From 19d938a61e0aa0669df59db6d2cfb5274257f526 Mon Sep 17 00:00:00 2001 From: Philipp Kolberg Date: Sat, 28 Oct 2023 23:26:07 +0200 Subject: [PATCH] Fix wrong attributes --- authentik/outposts/controllers/k8s/service.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/authentik/outposts/controllers/k8s/service.py b/authentik/outposts/controllers/k8s/service.py index c9b28d240..b4e1127e1 100644 --- a/authentik/outposts/controllers/k8s/service.py +++ b/authentik/outposts/controllers/k8s/service.py @@ -34,9 +34,9 @@ class ServiceReconciler(KubernetesObjectReconciler[V1Service]): raise NeedsUpdate() if current.spec.type != reference.spec.type: raise NeedsUpdate() - if current.spec.ipFamilyPolicy != reference.spec.ipFamilyPolicy: + if current.spec.ip_family_policy != reference.spec.ip_family_policy: raise NeedsUpdate() - if current.spec.ipFamilies != reference.spec.ipFamilies: + if current.spec.ip_families != reference.spec.ip_families: raise NeedsUpdate() super().reconcile(current, reference)