Skip to content

v0.39.1

Compare
Choose a tag to compare
@github-actions github-actions released this 17 Apr 13:18
· 79 commits to develop since this release
92fb86a

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

  • Bumping go version to 1.21.9 in v0.39.x line by @sethiyash in #475
  • Bump imgpkg to v0.40.1 vendir v0.39.1 in 39.x line by @sethiyash in #479

Full Changelog: v0.39.0...v0.39.1

📂 Files Checksum

31095832be7cf8a65838a117ac1d3a6da6a050dad560f6600d39bff243f1f98c  ./kbld-darwin-amd64
63fce704f0857bbcbec835cec66dc38417b6bbfb0a160cc02fd7b6ac1bd09a7f  ./kbld-windows-arm64.exe
6e97c9e02b5c92809d5a798415da6b99ecad5fd724fec424e66d31e218aa21d1  ./kbld-linux-amd64
7f60cae48b5f200389d61b559720af8df7aed716ab4c6bba6a56105767508d33  ./kbld-darwin-arm64
9634c538e3281ea64c90384ac227f14c181f07c012ab943bcb769400d2d05fb8  ./kbld-windows-amd64.exe
9c480f60fdc448d48c5a02fc06868978a1b38f9cbe11b401cda48086d7d15971  ./kbld-linux-arm64