mirror of
https://github.com/kubernetes-sigs/kustomize.git
synced 2026-06-12 01:14:22 +00:00
19 lines
481 B
YAML
19 lines
481 B
YAML
configMapGenerator:
|
|
- name: the-non-default-namespace-map
|
|
namespace: non-default
|
|
literals:
|
|
- altGreeting=Good Morning from non-default namespace!
|
|
- enableRisky="false"
|
|
- name: the-map
|
|
literals:
|
|
- altGreeting=Good Morning from default namespace!
|
|
- enableRisky="false"
|
|
|
|
secretGenerator:
|
|
- name: the-non-default-namespace-secret
|
|
namespace: non-default
|
|
commands:
|
|
password.txt: "cat password.txt"
|
|
- name: the-secret
|
|
commands:
|
|
password.txt: "cat password.txt" |