Proxy v2 (#189)
This commit is contained in:
13
passbook/providers/proxy/controllers/kubernetes.py
Normal file
13
passbook/providers/proxy/controllers/kubernetes.py
Normal file
@ -0,0 +1,13 @@
|
||||
"""Proxy Provider Kubernetes Contoller"""
|
||||
from passbook.outposts.controllers.kubernetes import KubernetesController
|
||||
|
||||
|
||||
class ProxyKubernetesController(KubernetesController):
|
||||
"""Proxy Provider Kubernetes Contoller"""
|
||||
|
||||
def __init__(self, outpost_pk: str):
|
||||
super().__init__(outpost_pk)
|
||||
self.deployment_ports = {
|
||||
"http": 4180,
|
||||
"https": 4443,
|
||||
}
|
Reference in New Issue
Block a user