Skip to content

Releases: prashantrewar/kapp

v0.23.1

18 Jan 08:33
Compare
Choose a tag to compare

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/prashantrewar/kapp/releases/download/v0.23.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 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/prashantrewar/kapp/releases/download/v0.23.1/checksums.txt
curl -LO https://github.com/prashantrewar/kapp/releases/download/v0.23.1/checksums.txt.pem
curl -LO https://github.com/prashantrewar/kapp/releases/download/v0.23.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/prashantrewar \
  --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

Read more

v0.4.0

27 Dec 14:15
Compare
Choose a tag to compare
faltu

Signed-off-by: Prashant Rewar <[email protected]>