22 lines
556 B
YAML
22 lines
556 B
YAML
|
apiVersion: v1
|
||
|
kind: Pod
|
||
|
metadata:
|
||
|
name: dapi-test-pod
|
||
|
spec:
|
||
|
containers:
|
||
|
- name: test-container
|
||
|
image: k8s.gcr.io/busybox
|
||
|
command: [ "/bin/sh", "-c", "echo $(SPECIAL_LEVEL_KEY) $(SPECIAL_TYPE_KEY)" ]
|
||
|
env:
|
||
|
- name: SPECIAL_LEVEL_KEY
|
||
|
valueFrom:
|
||
|
configMapKeyRef:
|
||
|
name: special-config
|
||
|
key: SPECIAL_LEVEL
|
||
|
- name: SPECIAL_TYPE_KEY
|
||
|
valueFrom:
|
||
|
configMapKeyRef:
|
||
|
name: special-config
|
||
|
key: SPECIAL_TYPE
|
||
|
restartPolicy: Never
|