|
How to use ConfigMap as Environment variables
Author: Venkata Sudhakar
The below example shows how to use ConfigMap as Environment variables. First create ConfigMap with required key value pairs. Next inject the desired ConfigMap using envFrom in container specification.
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:latest |
Now create a POD from the above definition, log into the container and inspect the newly added environment variables from ConfigMap.
01 | $ kubectl apply -f pod-def.yml |
02 | pod/pod-with-env-var created |
05 | NAME READY STATUS RESTARTS AGE |
06 | pod-with-env-var 1 / 1 Running 0 14s |
08 | $ kubectl exec -it pod-with-env-var -- sh |
11 | KUBERNETES_SERVICE_PORT= 443 |
12 | HOSTNAME=pod-with-env-var |
14 | aws.access.key=AAAAAAAAAA |
18 | KUBERNETES_PORT_443_TCP_ADDR= 10.96 . 0.1 |
19 | PATH=/go/bin:/usr/local/go/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin |
20 | KUBERNETES_PORT_443_TCP_PORT= 443 |
21 | KUBERNETES_PORT_443_TCP_PROTO=tcp |
22 | aws.secret.key=BBBBBBBBBB |
24 | KUBERNETES_PORT_443_TCP=tcp: |
25 | KUBERNETES_SERVICE_PORT_HTTPS= 443 |
27 | KUBERNETES_SERVICE_HOST= 10.96 . 0.1 |
28 | GOLANG_SRC_SHA256=8796cc48217b59595832aa9de6db45f58706dae68c9c7fbbd78c9fdbe3cd9032 |
|
|