github carvel-dev/kapp v0.65.0

4 hours ago

Installation and signature verification

Installation

By downloading binary from the release

For instance, if you are using Linux on an AMD64 architecture:

# Download the binary
curl -LO https://github.com/carvel-dev/kapp/releases/download/v0.65.0/kapp-linux-amd64

# Move the binary in to your PATH
mv kapp-linux-amd64 /usr/local/bin/kapp

# Make the binary executable
chmod +x /usr/local/bin/kapp

Via Homebrew (macOS or Linux)

$ brew tap carvel-dev/carvel
$ brew install kapp
$ kapp version  

Verify checksums file signature

The checksums file provided within the artifacts attached to this release is signed using Cosign with GitHub OIDC(Refer this page for cosign installation). To validate the signature of this file, run the following commands:

# Download the checksums file, certificate and signature
curl -LO https://github.com/carvel-dev/kapp/releases/download/v0.65.0/checksums.txt
curl -LO https://github.com/carvel-dev/kapp/releases/download/v0.65.0/checksums.txt.pem
curl -LO https://github.com/carvel-dev/kapp/releases/download/v0.65.0/checksums.txt.sig

# Verify the checksums file
cosign verify-blob checksums.txt \
  --certificate checksums.txt.pem \
  --signature checksums.txt.sig \
  --certificate-identity-regexp=https://github.com/carvel-dev \
  --certificate-oidc-issuer=https://token.actions.githubusercontent.com

Verify binary integrity

To verify the integrity of the downloaded binary, you can utilize the checksums file after having validated its signature.

# Verify the binary using the checksums file
sha256sum -c checksums.txt --ignore-missing

✨ What's new

  • add volume.kubernetes.io/storage-provisioner annotation for pvc by @dvjn #1056
  • add kubernetes.io/metadata.name annotation by @dvjn in #1057
  • Bump golang to 1.24.9 fix CVEs and linter errors/test failures by @sameerkhan-maker in #1098
  • Refactor gh action tests by @ankitsny

New Contributors

Full Changelog: v0.64.2...v0.65.0

📂 Files Checksum

3bc607405ae9e04a1743049203dbea4a5bad0f2ed8800b881f2b0e3e7b2e3073  ./kapp-darwin-arm64
5e5ae7d8633f0551596f7c462e3850d2bc7a47df82aa7793ec309958657f21ed  ./kapp-darwin-amd64
6f285a757f10f29491df09d592ff6395dafbdf6a9f2c7e2845409d69ce6cd71e  ./kapp-windows-amd64.exe
9cb88745d189bbfe2423771d68f50f7222ca33187350470857cca124d3341233  ./kapp-linux-amd64
c7be5fdbbc22d9efc7cb952c13c1e671a632af8530e7958eda89ff010cac78d3  ./kapp-linux-arm64

Don't miss a new kapp release

NewReleases is sending notifications on new releases.