|
How to mount the ConfigMap as a volume
Author: Venkata Sudhakar
The below example shows how to mount the ConfigMap as a volume in the container. First create ConfigMap with required key value pairs. Next define a volume based on ConfigMap and mount the same in the Container.
01 | $ kubectl create configmap abc-configmap --from-literal aws.access.key=AAAAAAAAAA --from-literal aws.secret.key=BBBBBBBBBB |
02 | configmap/abc-configmap created |
08 | name: pod-with-env-var |
11 | - name: env-with-configmap |
12 | image: bethecoder/docker-http-server:lates |
15 | mountPath: /etc/config |
20 | # Provide the name of the ConfigMap containing the files you want |
21 | # to add to the container |
Now create a POD from the above definition, log into the container and inspect mount path /etc/config. We have one file created for each key value pair in the map.
01 | $ kubectl exec -it pod-with-env-var -- sh |
05 | aws.access.key aws.secret.key |
07 | /etc/config # cat aws.access.key |
10 | /etc/config # cat aws.secret.key |
|
|