Releases: ricoberger/sealed-secrets-web
Version 2.4.0 / 2021-08-22
Version 2.3.0 / 2021-08-11
- Update kubeseal cli
- Improve documentation
Version 2.2.2 / 2020-05-05
- Use a numeric USER instruction in Dockerfile
Version 2.2.1 / 2020-04-25
- Add new
--web-external-url
flag, which can be used to specify the url, when the Sealed Secrets Web Interface is served behind a reverse proxy. Thanks at - Update the Go version in all GitHub Actions and fix the GitHub Action for the Helm release.
Version 2.2.0 / 2020-02-01
A new flag kubeseal-arguments
is introduced, which can be used to pass arguments to kubeseal. We are not passing the arguments from the sealed-secrets-web
directly to the underlying kubeseal.
Example values file for the Helm chart:
image:
repository: ricoberger/sealed-secrets-web
tag: 2.2.0
pullPolicy: IfNotPresent
args:
- --format=yaml
- --kubeseal-arguments=--format yaml --controller-name sealed-secrets
- --disable-load-secrets
Update kubeseal
kubeseal
was updated to version v0.9.7
Version 2.1.5 / 2020-01-29
Version 2.1.4 / 2020-01-28
- Bump Helm chart version
- Improve GitHub Actions pipeline
- Fix Docker image name and tag
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
...
Version 2.1.2 / 2019-08-28
Fix GitHub Action: We could not publish the Helm chart via GitHub Actions in the last release (Typo).
Version 2.1.1 / 2019-08-28
Add GitHub Actions:
- Go: Build the binaries on each PR.
- Docker: Publish a new Docker Image on a new release.
- Helm: Publish a new Helm Chart on a new release.