Last active
September 25, 2022 12:31
-
-
Save zartre/55b290cfd463cbf04ebacb7f85741fb7 to your computer and use it in GitHub Desktop.
Mounting ConfigMap as Volume
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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