quartz/content/Configmaps are always mounted as read only.md
2024-03-30 08:10:09 +01:00

564 B

Mounting configmaps is super useful. I've used it to mount scripts for execution within containers.

apiVersion: v1
kind: Pod
metadata:
  name: configmap-pod
spec:
  containers:
    - name: test
      image: busybox:1.28
      command: ['sh', '-c', 'echo "The app is running!" && tail -f /dev/null']
      volumeMounts:
        - name: config-vol
          mountPath: /etc/config
  volumes:
    - name: config-vol
      configMap:
        name: log-config
        items:
          - key: log_level
            path: log_level

202403300534