github carvel-dev/kapp v0.60.1

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

Full Changelog: v0.60.0...v0.60.1

📂 Files Checksum

abf7e55f53cdeaf7eb595121249af49ca783f52bb9ca61785cf4f0b2e19059f8  ./kapp-darwin-amd64
3b70daa4be3a87bc823b98268024e86ea28a367f99fed5059fe637c600e5f0d7  ./kapp-darwin-arm64
e9c20d0859a749ed71a472f5516c9cf65c739c2855ccd152f369820539fa7a8c  ./kapp-linux-amd64
a67e312b79939d91dbcb0c46908efcc01f6a87e7819cad128fef417e990fa360  ./kapp-linux-arm64
26da4c76cf48a105f5a8d35c9de9695f311515561ea7816947bcfc8808b8d434  ./kapp-windows-amd64.exe

Don't miss a new kapp release

NewReleases is sending notifications on new releases.