github carvel-dev/kbld v0.43.0

16 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/kbld/releases/download/v0.43.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.43.0/checksums.txt
curl -LO https://github.com/carvel-dev/kbld/releases/download/v0.43.0/checksums.txt.pem
curl -LO https://github.com/carvel-dev/kbld/releases/download/v0.43.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.42.0...v0.43.0

🔈 Callouts

Thanks to

📂 Files Checksum

0ef6dffa72656ff5e964306ab4833335be432e768916b9da12c08769dd1919c2  ./kbld-darwin-arm64
119e7d11e66e512896ce42aba9cc7f783388da3cbb258b793e7419a3167af2a9  ./kbld-linux-amd64
125a5434dd5a9226a2a6c451538e5b4e61bdbbbb992a04263f18d849f67c9dcb  ./kbld-windows-amd64.exe
562002e56ba13f6b148b2674b3ddd94b64dd53b73190fc1e84904232f5151627  ./kbld-linux-arm64
cfdfc5198b746b564ec81486e5d8e6aa944a7c326adf502091dbd75e5f5b4898  ./kbld-darwin-amd64
e484f2c381ee08c86fad3cf8ab8fc859bcfe2de5ed4ed55a18aba3a9836e9fb9  ./kbld-windows-arm64.exe

Don't miss a new kbld release

NewReleases is sending notifications on new releases.