v0.39.0
github-actions
released this
22 Jan 08:04
·
89 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.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.39.0/checksums.txt
curl -LO https://github.com/carvel-dev/kbld/releases/download/v0.39.0/checksums.txt.pem
curl -LO https://github.com/carvel-dev/kbld/releases/download/v0.39.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
- Remove tools cache in github runner by @praveenrewar in #423
- sign release artifacts using cosign by @prashantrewar in #450
- Bump go version to 1.21.6 by @sethiyash in #452
- use carvel.dev to import imgpkg and vendir and bumped there versions by @sethiyash in #454
New Contributors
- @prashantrewar made their first contribution in #450
Full Changelog: v0.38.0...v0.39.0
📂 Files Checksum
5088c312db268540dcb312b8530c53758e683a01f1bb3600365085ddc41a9710 ./kbld-darwin-arm64
72cebba8bf6ffaba2d81899718b138d1f2f96bc26a6871dd020437cac08d2809 ./kbld-windows-arm64.exe
8c09cad1e8bab60d79a94db6b6f573acaf789e1f014b33213e7f24f031e39d87 ./kbld-windows-amd64.exe
9da907c879102d7dc4205e073d6d32abf4ef1c719851e96498aae42ed691c342 ./kbld-linux-arm64
9f4b12722c79a1bc748ea882e47ff939272a45c477fed8ac7e206001aca0bfb1 ./kbld-darwin-amd64
cdbfdfc1e5da490eb59705bfbc30b3fd05c0485474aff15bec52352af46d5880 ./kbld-linux-amd64