22 lines
352 B
YAML
22 lines
352 B
YAML
apiVersion: kustomize.config.k8s.io/v1beta1
|
|
kind: Kustomization
|
|
|
|
namespace: the-order-dev
|
|
|
|
resources:
|
|
- ../../base
|
|
|
|
patches:
|
|
- path: configmap-patch.yaml
|
|
target:
|
|
kind: ConfigMap
|
|
name: the-order-config
|
|
|
|
configMapGenerator:
|
|
- name: the-order-config
|
|
behavior: merge
|
|
literals:
|
|
- ENVIRONMENT=dev
|
|
- LOG_LEVEL=debug
|
|
|