v0.39.0 (2026-08-18T09:46:07Z)
New v0.39.0 release!
Changelog
- 409f0f0 Add --metrics-omit-secret-labels to skip per-SealedSecret labels on condition_info (#1972)
- ce8e072 Allow setting hostUsers on deployment (#1978)
- 3d09823 Bump distroless/static from
3592aa8to9197324in /docker (#2008) - 15aa439 Bump github.com/mattn/go-isatty from 0.0.22 to 0.0.23 (#2009)
- fb7da1e Bump github.com/mattn/go-isatty from 0.0.23 to 0.0.24 (#2011)
- 7f4a573 Bump github.com/prometheus/client_golang from 1.23.2 to 1.24.1 (#2016)
- 159d530 Bump golang.org/x/crypto from 0.53.0 to 0.54.0 (#2007)
- 315e95c Bump k8s.io/client-go from 0.36.2 to 0.36.3 (#2012)
- de72a97 Bump k8s.io/code-generator from 0.36.2 to 0.36.3 (#2014)
- 0f805b9 Rate-limit the /v1/rotate endpoint (#1971)
- 195987c Release notes 0.39.0 (#2022)
- 6a6e888 Revert ArtifactHub repository metadata OCI push (#2005)
- 1c69578 fix(controller): start HTTP early for large additional-namespaces lists (#2018)
- 66db186 fix: stop /v1/verify from acting as a decryption oracle (#2019)
- abae13c test(controller): poll for server readiness instead of sleeping (#2010)
Installation Instructions
Cluster-side
Install the SealedSecret CRD and server-side controller into the kube-system namespace:
kubectl apply -f https://github.com/bitnami/sealed-secrets/releases/download/v0.39.0/controller.yamlClient-side
Install the client-side tool into /usr/local/bin/:
Linux x86_64:
curl -OL "https://github.com/bitnami/sealed-secrets/releases/download/v0.39.0/kubeseal-0.39.0-linux-amd64.tar.gz"
tar -xvzf kubeseal-0.39.0-linux-amd64.tar.gz kubeseal
sudo install -m 755 kubeseal /usr/local/bin/kubesealmacOS:
The kubeseal client is available on homebrew:
brew install kubesealMacPorts:
The kubeseal client is available on MacPorts:
port install kubesealNixpkgs
The kubeseal client is available on Nixpkgs: (DISCLAIMER: Not maintained by bitnami)
nix-env -iA nixpkgs.kubesealOther OS/Arch:
Binaries for other OS/arch combinations are attached to this release below.
If you just want the latest client tool, it can be installed into
$GOPATH/bin with:
go install github.com/bitnami/sealed-secrets/cmd/kubeseal@mainYou can specify a release tag or a commit SHA instead of main.
The go install command will place the kubeseal binary at $GOPATH/bin:
$(go env GOPATH)/bin/kubesealRelease Notes
Please read the RELEASE_NOTES which contain among other things important information for those upgrading from previous releases.