github carvel-dev/kapp v0.60.0

latest releases: v0.62.0, v0.61.0, v0.60.1...
3 months 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.60.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.60.0/checksums.txt
curl -LO https://github.com/carvel-dev/kapp/releases/download/v0.60.0/checksums.txt.pem
curl -LO https://github.com/carvel-dev/kapp/releases/download/v0.60.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 Changed

New Contributors

Full Changelog: v0.59.0...v0.60.0

📂 Files Checksum

7be696bde55f504d665105ac4da3b8159473cf5997dd49a20302cb5c453a3a84  ./kapp-windows-amd64.exe
7cc17971634da69c80d7159199c2c514c38b479d28987e055ce2c173bfbd9306  ./kapp-linux-amd64
7fa5e9e9aff5c29eb170252ba56b598038e7e141c5c7afa60e81b872e96c8729  ./kapp-darwin-arm64
8746b9b49c47f27b9b08f425f247a3ea0b847f5cb9a1b88e4cff6c036112c7d7  ./kapp-darwin-amd64
9847fa6f7122451e14833d9aaa376692dfc9fe2895ceb3a7159616a8041b68f5  ./kapp-linux-arm64

Don't miss a new kapp release

NewReleases is sending notifications on new releases.