website/content/fr/examples/pods/pod-configmap-envFrom.yaml

14 lines
274 B
YAML
Raw Normal View History

2021-04-10 20:52:11 +00:00
apiVersion: v1
kind: Pod
metadata:
name: dapi-test-pod
spec:
containers:
- name: test-container
image: registry.k8s.io/busybox
2021-04-10 20:52:11 +00:00
command: [ "/bin/sh", "-c", "env" ]
envFrom:
- configMapRef:
name: special-config
restartPolicy: Never