Skip to content

Instantly share code, notes, and snippets.

@zartre
Last active September 25, 2022 12:31
Show Gist options
  • Save zartre/55b290cfd463cbf04ebacb7f85741fb7 to your computer and use it in GitHub Desktop.
Save zartre/55b290cfd463cbf04ebacb7f85741fb7 to your computer and use it in GitHub Desktop.
Mounting ConfigMap as Volume
apiVersion: v1
kind: Pod
metadata:
name: config-map-demo
spec:
containers:
- name: demo
image: alpine
command: ["/bin/ash"]
args: ["-c", "cat hello-world.txt"]
volumeMounts:
- name: sample-volume
mountPath: /hello-world.txt
subPath: hello-world.txt
volumes:
- name: sample-volume
configMap:
name: sample-config-map
---
apiVersion: v1
kind: ConfigMap
metadata:
name: sample-config-map
data:
hello-world.txt: |
Hello, world!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment