Skip to content

sealed-secrets-v0.27.3

Compare
Choose a tag to compare
@github-actions github-actions released this 05 Dec 16:03
· 4 commits to main since this release
fa9307a

v0.27.3 (2024-12-05T15:57:57Z)

New v0.27.3 release!

Changelog

  • ba32f42 Adding keyttl and keycutofftime options to helm chart (#1610)
  • 91c908b Bump github.com/onsi/ginkgo/v2 from 2.20.2 to 2.21.0 (#1623)
  • c2aef0d Bump github.com/onsi/ginkgo/v2 from 2.21.0 to 2.22.0 (#1641)
  • 65f58f9 Bump github.com/onsi/gomega from 1.34.2 to 1.35.1 (#1624)
  • 186ba50 Bump github.com/onsi/gomega from 1.35.1 to 1.36.0 (#1645)
  • 5d31d46 Bump golang.org/x/crypto from 0.28.0 to 0.29.0 (#1635)
  • 7668094 Bump k8s.io/apimachinery from 0.31.2 to 0.31.3 (#1642)
  • 2e9f885 Bump k8s.io/code-generator from 0.31.2 to 0.31.3 (#1643)
  • e822b41 Configure max retries (#1633)
  • 2c6d400 Label "app.kubernetes.io/instance" in the Prometheus metric (#1620)
  • 46e1372 Properly error out when input file doesn't exist (#1640)
  • fa9307a Release Notes for 0.27.3 (#1651)
  • 6ccea08 Release carvel package 2.16.2 (#1632)
  • b497192 re-introduce install instructions with to releases (#1649)

Installation Instructions

Cluster-side

Install the SealedSecret CRD and server-side controller into the kube-system namespace:

kubectl apply -f https://github.com/bitnami-labs/sealed-secrets/releases/download/v0.27.3/controller.yaml

Client-side

Install the client-side tool into /usr/local/bin/:

Linux x86_64:

curl -OL "https://github.com/bitnami-labs/sealed-secrets/releases/download/v0.27.3/kubeseal-0.27.3-linux-amd64.tar.gz"
tar -xvzf kubeseal-0.27.3-linux-amd64.tar.gz kubeseal
sudo install -m 755 kubeseal /usr/local/bin/kubeseal

macOS:
The kubeseal client is available on homebrew:

brew install kubeseal

MacPorts:

The kubeseal client is available on MacPorts:

port install kubeseal

Nixpkgs

The kubeseal client is available on Nixpkgs: (DISCLAIMER: Not maintained by bitnami-labs)

nix-env -iA nixpkgs.kubeseal

Other 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-labs/sealed-secrets/cmd/kubeseal@main

You 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/kubeseal

Release Notes

Please read the RELEASE_NOTES which contain among other things important information for those upgrading from previous releases.

Thanks!