Secret

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

FieldMandatoryDocs / Description
enabledYes
typeYes
nameYesWhich Secret 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 Secret will be read-only.

Minimal configuration:

persistence:
  config:
    enabled: true
    type: secret
    name: mySecret

This will mount the contents of the pre-existing mySecret Secret to /config.