Skip to content

v0.64.2

Latest
Compare
Choose a tag to compare
@github-actions github-actions released this 19 May 09:17
· 8 commits to develop since this release
5bba16d

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

📂 Files Checksum

475ed4fc7ee538efceeb02972524a17cb580d9b3e59ab16c7a18de02427daedc  ./kapp-linux-amd64
7d996ba14aa7128efe96a4c4206609f251db0f7459b60f9cd51210a9e4b8354f  ./kapp-darwin-amd64
a5e8deaf0271eb8d5cddc57112763e95500c613702efe0ca06537e7c550e928f  ./kapp-windows-amd64.exe
bffda57ed0c83cd2a8cc6faaaf97b3aa71f000658258eeaae6b0a31531a0e03a  ./kapp-linux-arm64
cc6477204a6327aa48dfb37384a69bd6e311f7fcfe4ee52281e3a953b4a96856  ./kapp-darwin-arm64