This repository has been archived by the owner on Aug 27, 2021. It is now read-only.
Version 2.1.3 / 2020-01-28
Introduce a new flag --disable-load-secrets
to disable the loading of existing secrets. If the flag is enabled all API requests to the endpoints loadSecrets
and loadSecret
are forbidden and a 403 error is returned. The Secrets
button is not visible when the option is enabled.
To enable the option in the Helm chart the --disable-load-secrets
flag must be set in the args
array:
replicaCount: 1
image:
repository: ricoberger/sealed-secrets-web
tag: 2.1.2
pullPolicy: IfNotPresent
args:
- --disable-load-secrets
...