diff --git a/content/bn/examples/pods/pod-configmap-volume.yaml b/content/bn/examples/pods/pod-configmap-volume.yaml new file mode 100644 index 0000000000..4926a7e6cc --- /dev/null +++ b/content/bn/examples/pods/pod-configmap-volume.yaml @@ -0,0 +1,19 @@ +apiVersion: v1 +kind: Pod +metadata: + name: dapi-test-pod +spec: + containers: + - name: test-container + image: registry.k8s.io/busybox + command: [ "/bin/sh", "-c", "ls /etc/config/" ] + volumeMounts: + - name: config-volume + mountPath: /etc/config + volumes: + - name: config-volume + configMap: + # Provide the name of the ConfigMap containing the files you want + # to add to the container + name: special-config + restartPolicy: Never