From a21a8601f3c4b16b13c098d463d5504204bdf5ea Mon Sep 17 00:00:00 2001 From: Scooby Husky Date: Wed, 19 Aug 2026 00:23:08 -0500 Subject: [PATCH] Fix: replica.source is required unconditionally by the CNPG webhook Confirmed live: 'spec.replica.source: Required value' even though home isn't actually replicating from anyone (self == primary). Set to its own self-referencing entry name. --- infrastructure/authentik/manifests/cnpg-cluster.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/infrastructure/authentik/manifests/cnpg-cluster.yaml b/infrastructure/authentik/manifests/cnpg-cluster.yaml index b95b1c0..e2724b5 100644 --- a/infrastructure/authentik/manifests/cnpg-cluster.yaml +++ b/infrastructure/authentik/manifests/cnpg-cluster.yaml @@ -151,4 +151,5 @@ spec: replica: self: home primary: home + source: home # required unconditionally by the admission webhook, even though home isn't actually replicating from anyone right now (self == primary)