From 77d400a562322325e45c0b021081864fe4f9af83 Mon Sep 17 00:00:00 2001 From: XoR Date: Thu, 12 Mar 2026 12:37:49 +0300 Subject: [PATCH] fix(test-env): remove namespace from kustomization (ArgoCD conflict) Namespace test-env is shared between test-env and kargo-test-env-pipeline apps. Having namespace.yaml in both causes ArgoCD OutOfSync conflict. ArgoCD creates the namespace via syncOptions.CreateNamespace. --- test-env/kustomization.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test-env/kustomization.yaml b/test-env/kustomization.yaml index 749b3eb..15bcf33 100644 --- a/test-env/kustomization.yaml +++ b/test-env/kustomization.yaml @@ -2,7 +2,8 @@ apiVersion: kustomize.config.k8s.io/v1beta1 kind: Kustomization resources: - - namespace.yaml + # NOTE: namespace.yaml removed — ArgoCD creates namespace via syncOptions.CreateNamespace + # The namespace is shared with kargo-test-env-pipeline app. # PostgreSQL 18.x-2.1C (image has built-in 1C entrypoint) - postgres/statefulset.yaml - postgres/service.yaml