Skip to content

v0.45.0

Latest
Compare
Choose a tag to compare
@github-actions github-actions released this 09 Dec 16:37
· 8 commits to develop since this release
0ad1b35

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.45.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.45.0/checksums.txt
curl -LO https://github.com/carvel-dev/kbld/releases/download/v0.45.0/checksums.txt.pem
curl -LO https://github.com/carvel-dev/kbld/releases/download/v0.45.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.44.0...v0.45.0

📂 Files Checksum

0e6c05081b98c512a6cec98cd69096d9d99186b3eb5717d48813e0bd3f3beb47  ./kbld-darwin-arm64
4aed348be8e067361ba74cc1dc054d044aaf911e4c6c5e91284b86473c6cb288  ./kbld-windows-arm64.exe
685234084818e92a79b91369d3c8c2495cd41c7a04a86c8ce1aca0e6c7aaa30b  ./kbld-windows-amd64.exe
7a15d842a954854e0c04ff86264b686e7c8da43a2321338b4408b9b4af44f7c8  ./kbld-darwin-amd64
9e52c553322fa21a8af10d47d76c66eb7a2f406fad92bb589458554cb4143121  ./kbld-linux-arm64
e076af83ef05765e6bf825f2bf5ac31c365cc0d513b7317bd634f3b9c6b5ee5d  ./kbld-linux-amd64