Skip to content

common-0.8.7

Compare
Choose a tag to compare
@github-actions github-actions released this 02 May 16:50
075616b

Added the option to fail on missing secrets when deploying a workload using the common chart.

# If `failOnMissingLocalSecrets` is enabled, an initContainer will try to
# fetch the secrets.
#
# If `local-secrets`, which is what powers the `secrets:fetch` target returns
# an error status, the rollout of a new replicaset will halt and that will
# buy us time to either define the missing secret or remove it as a
# requirement without bringing the whole deployment down in the process.
#
# Since not all the `service-template` derived deployments use the same command
# to fetch secrets, that field is customizable to fit the needs of all.
failOnMissingLocalSecrets:
  enabled: false
  secretsFetch:
    command: ["yarn"]
    args: ["secrets:fetch"]