From a3da04f406511a1492eef793a81127d6aecab383 Mon Sep 17 00:00:00 2001 From: Story Crater Bot <19826264+Riotpiaole@users.noreply.github.com> Date: Sat, 22 Aug 2026 05:54:52 -0700 Subject: [PATCH] fix(kustomize): remove duplicate configmap resource & use literals - Remove configmap.yaml from resources (conflicted with configMapGenerator) - Define TEMPORAL_* vars as literals in configMapGenerator - This fixes the namespace transformation ID conflict --- k8s/kustomization.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/k8s/kustomization.yaml b/k8s/kustomization.yaml index 6160e28..45b0283 100644 --- a/k8s/kustomization.yaml +++ b/k8s/kustomization.yaml @@ -4,10 +4,8 @@ kind: Kustomization namespace: poimen resources: - - configmap.yaml - worker-deployment.yaml - orchestrator-job.yaml - # secret.yaml is auto-generated from secrets.env below commonLabels: app.kubernetes.io/name: poimen @@ -21,4 +19,7 @@ secretGenerator: configMapGenerator: - name: poimen-config + literals: + - TEMPORAL_NAMESPACE=poimen-harness + - TEMPORAL_HOSTPORT=temporal-frontend.temporal:7233 behavior: create