ConfigMap

In order to mount a configMap to a mount point within the Pod you can use the configMap type persistence item.

FieldMandatoryDocs / Description
enabledYes
typeYes
nameYesWhich configMap should be mounted. Supports Helm templating.
defaultModeNoThe default file access permission bit.
itemsNoSpecify item-specific configuration. Will be passed 1:1 to the volumeSpec.
readOnlyNoExplicitly specify if the volume should be mounted read-only. Even if not specified, the configMap will be read-only.

Minimal configuration:

persistence:
  config:
    enabled: true
    type: configMap
    name: mySettings

This will mount the contents of the pre-existing mySettings configMap to /config.