20 lines
553 B
YAML
20 lines
553 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", "env" ]
|
|||
env:
|
|||
# Define the environment variable
|
|||
- name: SPECIAL_LEVEL_KEY
|
|||
valueFrom:
|
|||
configMapKeyRef:
|
|||
# The ConfigMap containing the value you want to assign to SPECIAL_LEVEL_KEY
|
|||
name: special-config
|
|||
# Specify the key associated with the value
|
|||
key: special.how
|
|||
restartPolicy: Never
|