20 lines
558 B
YAML
20 lines
558 B
YAML
apiVersion: v1
|
|
kind: Pod
|
|
metadata:
|
|
name: dapi-test-pod
|
|
spec:
|
|
containers:
|
|
- name: test-container
|
|
image: registry.k8s.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
|