v0.39.2
github-actions
released this
07 Sep 06:33
·
100 commits
to develop
since this release
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.39.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.39.2/checksums.txt
curl -LO https://github.com/carvel-dev/kbld/releases/download/v0.39.2/checksums.txt.pem
curl -LO https://github.com/carvel-dev/kbld/releases/download/v0.39.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 Go version to 1.22 and fix CVEs by @devanshuVmware in #509
Full Changelog: v0.39.1...v0.39.2
📂 Files Checksum
135cbb41c784a12ce82fde28a87e716f530184bec80f058e3ba083c02c350e57 ./kbld-windows-arm64.exe
53c0904b90281e7d3ad4198625339c383b5468ee7e5a1321216aabb1682ab613 ./kbld-darwin-amd64
7959c11af0724dac47b42d8bbcc7397454c260b7535581f289e6839000c393a4 ./kbld-linux-amd64
aaa2c4013c624f30a702f5ad5333eee790e1199aa6a5d6d101ab53bc36137214 ./kbld-windows-amd64.exe
c2173dca6d97274015261caa3cdba85e55929b328010315b41334e57796c996c ./kbld-darwin-arm64
e733e5102a88034ab63acf1b14b5f5552581a9b01441d99a50a6df9a5274b236 ./kbld-linux-arm64