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.2/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.2/checksums.txt
curl -LO https://github.com/carvel-dev/kbld/releases/download/v0.45.2/checksums.txt.pem
curl -LO https://github.com/carvel-dev/kbld/releases/download/v0.45.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
- Bump imgpkg and vendir to latest patch versions by @devanshuVmware in #538
Full Changelog: v0.45.1...v0.45.2
📂 Files Checksum
22f0cef344cf2678e00dd404e864b58883861e855985c16c591f550df5b1e26c ./kbld-windows-amd64.exe
5beb63063cc5d4c7de507370e780cf342926cc6e0e343869b01d794fce7f3f99 ./kbld-linux-amd64
89c6dad3b8c867e038cddd858a174df9ca17d1696fc0bb3a8c59462664fd9c2b ./kbld-windows-arm64.exe
bb5cf82b3a64fc3e100c04a45db4052eaeca62247af8cc98d473d833b2ebe4e1 ./kbld-darwin-arm64
c37f9b6c2f67066a33d1232580dddb5d36cdd8b244c1bc156bc668df1e8d2099 ./kbld-linux-arm64
e8bfb2bfef8f78d96d499774133ae865f2859aba48e186b825c07f99f4581e5d ./kbld-darwin-amd64