Files
poimen-workflows/k8s/kustomization.yaml
T
Story Crater Bot a3da04f406
ci / test (push) Successful in 44s
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
2026-08-22 05:54:52 -07:00

26 lines
514 B
YAML

apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
namespace: poimen
resources:
- worker-deployment.yaml
- orchestrator-job.yaml
commonLabels:
app.kubernetes.io/name: poimen
app.kubernetes.io/component: orchestrator
secretGenerator:
- name: poimen-secrets
envs:
- secrets.env
behavior: create
configMapGenerator:
- name: poimen-config
literals:
- TEMPORAL_NAMESPACE=poimen-harness
- TEMPORAL_HOSTPORT=temporal-frontend.temporal:7233
behavior: create