Skip to content

v0.44.0

Latest
Compare
Choose a tag to compare
@github-actions github-actions released this 17 Jul 13:02
· 14 commits to develop since this release
4605e28

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

  • Bump go version to 1.22.5 in #498 by @devanshuVmware
  • Bump go, golangci-lint, actions in #486 by @praveenrewar
  • Bump carvel.dev/imgpkg from 0.42.0 to 0.42.1
  • Bump carvel.dev/vendir from 0.40.1 to 0.40.2

Full Changelog: v0.43.0...v0.44.0

New Contributors

📂 Files Checksum

00906d2d076f9fa035b0a04c264f0cd11431c787afaee0bf304ee84bf339a1f5  ./kbld-windows-arm64.exe
27cada4db27cfb365ddd2b670864b94ee160b7d8c9cd4a2a81f66e78b613dc5c  ./kbld-windows-amd64.exe
2912583db28bc0caa88549ce142c6f30731e0580cd141e646673f4b733f52996  ./kbld-darwin-amd64
2b1550a7293963fec0a4d2b6fdbfa9fc24af4a43035d18ba8e6f9b4c67662ad0  ./kbld-linux-amd64
31086a41bcfd012a7b9e2e7fac6f6615f8d8b633e00104c97ca7235b242915d2  ./kbld-darwin-arm64
3a85316703a6c22d2d4d286a09993cd8d9c4955ca9e863f8fd7096a596070840  ./kbld-linux-arm64