Skip to content

v0.46.0

Latest
Compare
Choose a tag to compare
@github-actions github-actions released this 15 May 18:06
f3e483f

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/kbld/releases/download/v0.46.0/kbld-linux-amd64

# Move the binary in to your PATH
mv kapp-linux-amd64 /usr/local/bin/kbld

# Make the binary executable
chmod +x /usr/local/bin/kbld

Via Homebrew (macOS or Linux)

$ brew tap carvel-dev/carvel
$ brew install kbld
$ kbld 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/kbld/releases/download/v0.46.0/checksums.txt
curl -LO https://github.com/carvel-dev/kbld/releases/download/v0.46.0/checksums.txt.pem
curl -LO https://github.com/carvel-dev/kbld/releases/download/v0.46.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

Full Changelog: v0.45.0...v0.46.0

📂 Files Checksum

41562def3db908f903a27b0a4f5e781bf875c2c26297d6d13fcf94c717057143  ./kbld-windows-amd64.exe
6d059595ab02ec45c4ebb189eaef5c680271a6f32b62b14f8d0c094e6512e39b  ./kbld-darwin-arm64
7b758d93d7d63492d55169a721388de2fae2c481be2111cc66d4352c784cc457  ./kbld-darwin-amd64
90e8d123d5e33ab13b849997bdb05626fa7f2384120d87a29eebd56490105ca9  ./kbld-linux-amd64
bb2422ca7b9b169ef17dfa6fd7d51b0caa8634c416ba57bae55458e3b5427934  ./kbld-windows-arm64.exe
f0202ff24fda501ead70f4b83f24d0e078bb45b52e8ce7217f0b78a6bfedebc3  ./kbld-linux-arm64