authentik.providers.rac.controllers.kubernetes
RAC Provider Kubernetes Controller
1"""RAC Provider Kubernetes Controller""" 2 3from authentik.outposts.controllers.k8s.service import ServiceReconciler 4from authentik.outposts.controllers.kubernetes import KubernetesController 5from authentik.outposts.models import KubernetesServiceConnection, Outpost 6 7 8class RACKubernetesController(KubernetesController): 9 """RAC Provider Kubernetes Controller""" 10 11 def __init__(self, outpost: Outpost, connection: KubernetesServiceConnection): 12 super().__init__(outpost, connection) 13 self.deployment_ports = [] 14 del self.reconcilers[ServiceReconciler.reconciler_name()]
9class RACKubernetesController(KubernetesController): 10 """RAC Provider Kubernetes Controller""" 11 12 def __init__(self, outpost: Outpost, connection: KubernetesServiceConnection): 13 super().__init__(outpost, connection) 14 self.deployment_ports = [] 15 del self.reconcilers[ServiceReconciler.reconciler_name()]
RAC Provider Kubernetes Controller
RACKubernetesController( outpost: authentik.outposts.models.Outpost, connection: authentik.outposts.models.KubernetesServiceConnection)