From 886fab963a8375153cead81890b6632ff3a37b5e Mon Sep 17 00:00:00 2001 From: Alex Lourie Date: Thu, 23 Jul 2026 13:57:43 +0930 Subject: [PATCH] Move argo to argo-cd namespace and add cnpg operator to example cluster Signed-off-by: Alex Lourie --- local-k8s/examples/components.yaml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/local-k8s/examples/components.yaml b/local-k8s/examples/components.yaml index ea59e19..6084935 100644 --- a/local-k8s/examples/components.yaml +++ b/local-k8s/examples/components.yaml @@ -1,10 +1,11 @@ helm_repos: argocd: "https://argoproj.github.io/argo-helm" + cnpg: "https://cloudnative-pg.github.io/charts" cluster_components: - name: argocd chart: argocd/argo-cd version: "10.0.1" - namespace: argocd + namespace: argo-cd set: applicationSet.replicas: "1" configs.cm.admin.enabled: "true" @@ -24,3 +25,9 @@ cluster_components: # Expose to the host so we can browse without port-forwarding, see kind-cluster.yaml server.service.nodePortHttp: "30080" server.service.type: "NodePort" + - name: cnpg + chart: cnpg/cloudnative-pg + version: "0.29.0" + namespace: cnpg + set: + replicaCount: "1"