fix(kustomize): remove duplicate configmap resource & use literals
ci / test (push) Successful in 44s

- Remove configmap.yaml from resources (conflicted with configMapGenerator)
- Define TEMPORAL_* vars as literals in configMapGenerator
- This fixes the namespace transformation ID conflict
This commit is contained in:
Story Crater Bot
2026-08-22 05:54:52 -07:00
parent c5c07cdc73
commit a3da04f406
+3 -2
View File
@@ -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