Kubernetes - ConfigMaps
Given this pod volume mount snippet, what file content will appear inside the container at
/etc/config/app.properties if the ConfigMap app-config has a key app.properties with value mode=production?
volumes:
- name: config-volume
configMap:
name: app-config
containers:
- name: app
image: myapp
volumeMounts:
- name: config-volume
mountPath: /etc/config
readOnly: true