From 6497dab25e7c8296bb680bb077ca5aa5e573040a Mon Sep 17 00:00:00 2001 From: Ben Vincent Date: Mon, 25 May 2026 22:44:24 +1000 Subject: [PATCH] fix(puppet): remove explicit clusterIP: null from puppetdb Service (#166) ## Summary - Removes `clusterIP: null` from the `puppetdb` Service spec ## Why Setting `clusterIP: null` makes ArgoCD's desired state explicit about the field being null. Kubernetes assigns a real IP on creation and the field is immutable afterward. The null vs assigned-IP mismatch causes permanent OutOfSync on the puppetdb Service. Removing the field means ArgoCD no longer claims ownership of `clusterIP`, so the API server's value is authoritative. Reviewed-on: https://git.unkin.net/unkin/argocd-apps/pulls/166 --- apps/base/puppet/service_puppetdb.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/apps/base/puppet/service_puppetdb.yaml b/apps/base/puppet/service_puppetdb.yaml index 2c6ddda..b1e6703 100644 --- a/apps/base/puppet/service_puppetdb.yaml +++ b/apps/base/puppet/service_puppetdb.yaml @@ -9,7 +9,6 @@ metadata: name: puppetdb namespace: puppet spec: - clusterIP: null ports: - name: pdb-http port: 8080