github carvel-dev/kapp v0.62.0

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

  • 🚨 For library users 🚨 the go module name changes to carvel.dev/kapp this is a breaking change on this version, no impact for users that only use the binaries

Full Changelog: v0.61.0...v0.62.0

📂 Files Checksum

b4b980d4bc97508bec2416bc50888f55c7e4d96ada71a072003d2eee571db995  ./kapp-darwin-amd64
88d6ed91f87571e892b60fc57b2e3526cb49db0c22531da392cd380c6b4a8ede  ./kapp-darwin-arm64
6eb24733364213967c434ca77a7b3516f80c962e1da1ba57ce4c495556cf1585  ./kapp-linux-amd64
10e2e0b165202ae355501516f0b34de066523a384970f8423d8295ca79c16133  ./kapp-linux-arm64
24e178632b915f5a9814cc4d8a25c67256dfb3d7957bd72b080340099b0b7ac8  ./kapp-windows-amd64.exe

Don't miss a new kapp release

NewReleases is sending notifications on new releases.