Skip to content

Release 0.15.1

This release adds support for default pod labels and annotations in the Helm chart and operator configuration.

For new installations, see the Installation guide.

For upgrading existing installations, see the associated Upgrading to 0.15.x guide.

You can now configure default labels and annotations for all pods spawned by the operator. Labels and annotations are merged with any existing values; existing keys take precedence.

values.yaml
operator:
config:
pod: # all pods
labels:
app.kubernetes.io/part-of: my-platform
annotations:
my-annotation: "value"
backup:
pod: # backup pods only
labels: {}
annotations: {}
restore:
pod: # restore pods only
labels: {}
annotations: {}

This is useful for scenarios such as Azure Workload Identity, where pods require specific labels to be assigned a workload identity.

values.yaml
operator:
config:
pod:
labels:
azure.workload.identity/use: "true"

For a full list of changes, see the Changelog.