github carvel-dev/kapp v0.62.1

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

Full Changelog: v0.62.0...v0.62.1

📂 Files Checksum

13648fa026484768437392e9c6205f22fbc1aa27789da55ea81eb8a798f72013  ./kapp-darwin-amd64
25b4a2f1f1eb3e5b9fe3fd39c182ce2033e5e848742ae5fde4e6dae9499b57d8  ./kapp-windows-amd64.exe
b686bd63e5f751496d8221c7cf3df308663b6b21e1c480dd4a4cd301f6a8d651  ./kapp-linux-amd64
bbf1425904ba70702f70bd7235f4e9c2e02cf42f4d45251aa0bcff9441669dbf  ./kapp-darwin-arm64
f5d2e48c21c25e4b59438bbf6e709a6335374dd78737fda455d477f6de62aa33  ./kapp-linux-arm64

Don't miss a new kapp release

NewReleases is sending notifications on new releases.