tl  tr
  Home | Tutorials | Articles | Videos | Products | Tools | Search
Interviews | Open Source | Tag Cloud | Follow Us | Bookmark | Contact   
 Container Management > Kubernetes > How to use ConfigMap as Environment variables

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
02configmap/abc-configmap created
03 
04$ cat pod-def.yml
05kind: Pod
06apiVersion: v1
07metadata:
08  name: pod-with-env-var
09spec:
10  containers:
11    - name: env-with-configmap
12      image: bethecoder/docker-http-server:latest
13      envFrom:
14        - configMapRef:
15            name: abc-configmap

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
02pod/pod-with-env-var created
03 
04$ kubectl get pods
05NAME               READY   STATUS    RESTARTS   AGE
06pod-with-env-var   1/1     Running   0          14s
07 
08$ kubectl exec -it pod-with-env-var -- sh
09/app # env
10KUBERNETES_PORT=tcp://10.96.0.1:443
11KUBERNETES_SERVICE_PORT=443
12HOSTNAME=pod-with-env-var
13SHLVL=1
14aws.access.key=AAAAAAAAAA
15HOME=/root
16GOLANG_SRC_URL=https://golang.org/dl/go1.6.4.src.tar.gz
17TERM=xterm
18KUBERNETES_PORT_443_TCP_ADDR=10.96.0.1
19PATH=/go/bin:/usr/local/go/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
20KUBERNETES_PORT_443_TCP_PORT=443
21KUBERNETES_PORT_443_TCP_PROTO=tcp
22aws.secret.key=BBBBBBBBBB
23GOPATH=/go
24KUBERNETES_PORT_443_TCP=tcp://10.96.0.1:443
25KUBERNETES_SERVICE_PORT_HTTPS=443
26PWD=/app
27KUBERNETES_SERVICE_HOST=10.96.0.1
28GOLANG_SRC_SHA256=8796cc48217b59595832aa9de6db45f58706dae68c9c7fbbd78c9fdbe3cd9032
29GOLANG_VERSION=1.6.4
30/app #

 
  


  
bl  br