tl  tr
  Home | Tutorials | Articles | Videos | Products | Tools | Search
Interviews | Open Source | Tag Cloud | Follow Us | Bookmark | Contact   
 Container Management > Kubernetes > How to define Container environment variables using ConfigMap data

How to define Container environment variables using ConfigMap data

Author: Venkata Sudhakar

The below example shows how to define Container environment variables using ConfigMap data. First create ConfigMap with required key value pairs. Next define the Container environment variables using valueFrom 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-var2
09spec:
10  containers:
11    - name: env-with-configmap2
12      image: bethecoder/docker-http-server:latest
13      env:
14        # Define the environment variable
15        - name: AWS_ACCESS_KEY
16          valueFrom:
17            configMapKeyRef:
18              # The ConfigMap containing the value you want to assign to AWS_ACCESS_KEY
19              name: abc-configmap
20              # Key associated with the value
21              key: aws.access.key
22        - name: AWS_SECRET_KEY
23          valueFrom:
24            configMapKeyRef:
25              # The ConfigMap containing the value you want to assign to AWS_SECRET_KEY
26              name: abc-configmap
27              # Key associated with the value
28              key: aws.secret.key

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-var2   1/1     Running   0          77s
07 
08$ kubectl exec -it pod-with-env-var2 -- sh
09/app # env
10KUBERNETES_SERVICE_PORT=443
11KUBERNETES_PORT=tcp://10.96.0.1:443
12HOSTNAME=pod-with-env-var2
13SHLVL=1
14HOME=/root
15AWS_SECRET_KEY=BBBBBBBBBB
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_ACCESS_KEY=AAAAAAAAAA
23GOPATH=/go
24KUBERNETES_SERVICE_PORT_HTTPS=443
25KUBERNETES_PORT_443_TCP=tcp://10.96.0.1:443
26PWD=/app
27KUBERNETES_SERVICE_HOST=10.96.0.1
28GOLANG_SRC_SHA256=8796cc48217b59595832aa9de6db45f58706dae68c9c7fbbd78c9fdbe3cd9032
29GOLANG_VERSION=1.6.4
30/app #

 
  


  
bl  br