github carvel-dev/kbld v0.48.1

3 hours 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.48.1/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.48.1/checksums.txt
curl -LO https://github.com/carvel-dev/kbld/releases/download/v0.48.1/checksums.txt.pem
curl -LO https://github.com/carvel-dev/kbld/releases/download/v0.48.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/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 Changed

  • chore(deps): upgrade Go to 1.26.3 and bump imgpkg, vendir, pflag, and x/mod by @sameerforge in #595

Full Changelog: v0.48.0...v0.48.1

📂 Files Checksum

3f069897f433455aaaf4a918a9a4a0faea0663b43f4e68574328a651a19b9815  ./kbld-windows-arm64.exe
9e417cb47dbf484cbf2a9f10b6a43186d2dded3597102de3f47f1d2989669884  ./kbld-linux-amd64
fc0909f8a77f737cc075fc2e9dbf70408e00e933015863569dbd17a020e6fc06  ./kbld-darwin-amd64
27cc0137f0b7c71e0ebe924ace785b6e25b27c809c7db8d39f880c1864c191cc ./kbld-linux-arm64
bb17aa8eea874485805ab475b7399050443a211ca6568b2112e435509f7fcd32  ./kbld-windows-amd64.exe
a9ed7e4fbce8fa714357458d29cea0664a00d403415f47e700fbc3b7d951f561  ./kbld-darwin-arm64

Don't miss a new kbld release

NewReleases is sending notifications on new releases.