0
0
Kubernetesdevops~10 mins

Using ConfigMaps as mounted volumes in Kubernetes - Step-by-Step Execution

Choose your learning style9 modes available
Process Flow - Using ConfigMaps as mounted volumes
Create ConfigMap with data
Define Pod spec with volume referencing ConfigMap
Mount volume inside container at path
Pod starts, volume files appear inside container
Container reads config files from mounted volume
This flow shows how a ConfigMap is created, referenced as a volume in a Pod, mounted inside the container, and then accessed as files.
Execution Sample
Kubernetes
kubectl create configmap app-config --from-literal=key1=value1
---
apiVersion: v1
kind: Pod
metadata:
  name: configmap-pod
spec:
  containers:
  - name: app
    image: busybox
    volumeMounts:
    - name: config-volume
      mountPath: /etc/config
  volumes:
  - name: config-volume
    configMap:
      name: app-config
Creates a ConfigMap and mounts it as a volume inside a Pod at /etc/config.
Process Table
StepActionResource Created/ModifiedResult/State Change
1Create ConfigMap with key1=value1ConfigMap 'app-config'ConfigMap stores key1=value1
2Define Pod spec referencing ConfigMap volumePod 'configmap-pod' specPod spec includes volume 'config-volume' from ConfigMap 'app-config'
3Mount volume inside container at /etc/configContainer volumeMounts updatedVolume 'config-volume' mounted at /etc/config inside container
4Start PodPod 'configmap-pod' runningPod starts, container filesystem has /etc/config/key1 file with content 'value1'
5Container reads /etc/config/key1File read operationContainer reads 'value1' from mounted ConfigMap file
6Pod terminates or deletedPod removedMounted volume and ConfigMap files no longer accessible
ExitNo more steps-Execution ends after Pod lifecycle
💡 Pod lifecycle ends, mounted ConfigMap volume is removed with Pod termination
Status Tracker
VariableStartAfter Step 1After Step 2After Step 3After Step 4After Step 5Final
ConfigMap 'app-config'NoneCreated with key1=value1UnchangedUnchangedUnchangedUnchangedExists until Pod deleted
Pod 'configmap-pod'NoneNoneDefined with volume referencing ConfigMapVolume mounted at /etc/configRunning with mounted volumeContainer reads file contentDeleted after termination
Mounted volume filesNoneNoneNoneFiles appear at /etc/config/key1File content 'value1' accessibleRead successfullyRemoved with Pod
Key Moments - 3 Insights
Why does the ConfigMap data appear as files inside the container?
Because the ConfigMap is mounted as a volume, Kubernetes creates files inside the container at the mount path, each file named after a key with its content as the value, as shown in execution_table step 4.
What happens if the ConfigMap is updated after the Pod is running?
The mounted volume does not automatically update inside the running Pod. The Pod must be restarted to see changes, as the volume files are created at Pod start (see execution_table step 4).
Can the container write to the ConfigMap files inside the mounted volume?
No, the ConfigMap volume is read-only inside the container. Attempts to write will fail, ensuring config data integrity (implied by volume mount behavior in step 3).
Visual Quiz - 3 Questions
Test your understanding
Look at the execution table, at which step does the ConfigMap volume get mounted inside the container?
AStep 3
BStep 2
CStep 4
DStep 5
💡 Hint
Check the 'Action' and 'Result/State Change' columns for volume mounting details.
According to the variable tracker, what is the state of the Pod after Step 4?
APod is deleted
BPod is defined but not running
CPod is running with mounted volume
DPod is starting but volume not mounted
💡 Hint
Look at the 'Pod configmap-pod' row under 'After Step 4' in variable_tracker.
If the ConfigMap is updated after the Pod starts, what will happen to the files inside the container?
AFiles update immediately
BFiles do not update until Pod restart
CFiles update after a delay
DFiles are deleted
💡 Hint
Refer to key_moments about ConfigMap updates and execution_table step 4.
Concept Snapshot
Create a ConfigMap with kubectl or YAML
Reference it in Pod spec as a volume under 'volumes'
Mount the volume inside container with 'volumeMounts' and 'mountPath'
At Pod start, ConfigMap keys appear as files in mountPath
Files are read-only and reflect ConfigMap data at Pod start
Pod restart needed to see ConfigMap updates
Full Transcript
This visual execution shows how to use ConfigMaps as mounted volumes in Kubernetes. First, a ConfigMap named 'app-config' is created with key-value data. Then, a Pod is defined that references this ConfigMap as a volume named 'config-volume'. The volume is mounted inside the container at /etc/config. When the Pod starts, Kubernetes creates files inside the container at /etc/config, each file named after a ConfigMap key with its content as the value. The container can read these files to access configuration data. The ConfigMap volume is read-only, so the container cannot modify these files. If the ConfigMap is updated after the Pod is running, the files inside the container do not change until the Pod is restarted. Finally, when the Pod is deleted, the mounted volume and files disappear. This step-by-step trace helps beginners understand how ConfigMaps provide configuration data to containers via mounted volumes.