github carvel-dev/kapp v0.65.3

6 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.3/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.3/checksums.txt
curl -LO https://github.com/carvel-dev/kapp/releases/download/v0.65.3/checksums.txt.pem
curl -LO https://github.com/carvel-dev/kapp/releases/download/v0.65.3/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

Changelog

What's Changed

Full Changelog: v0.65.2...v0.65.3

📂 Files Checksum

1724da4b62982285b1da696fb0354738e33913b33e59f3787b5c2b5ac7030327  ./kapp-linux-amd64
3092f5050d30460d857e836bb9454aa84aed83db6532947ec2395b61501f2124  ./kapp-windows-amd64.exe
485eb76508c33365780a91831ebbf030b1be93b02d6011935abdaa751328d719  ./kapp-linux-arm64
75c1c9809d3d3c618480be6ffaa00a4650e9792a86c8e561d63d8927828fc0e1  ./kapp-darwin-arm64
cebb31f6b72cd94dc4e1c17b31ba6e4ac70caeb53e4b29aea1fbc1885605e9a7  ./kapp-darwin-amd64

Don't miss a new kapp release

NewReleases is sending notifications on new releases.