github carvel-dev/kbld v0.47.3

one day ago

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

Full Changelog: v0.47.2...v0.47.3

📂 Files Checksum

974c4d63675e1d57f58fdbd89e838e12e04833389a7d3cce97a30c4cad14024f  ./kbld-windows-arm64.exe
26be68f9ec354a2753f102707f4389e28111d36c2a318b72cd1bcff719fabb6c  ./kbld-linux-amd64
224eae07777ac6180a9911fa5be1d1e5fb2f1d053faa39b55c8e79092bde3795  ./kbld-darwin-amd64
e985d62a8539ca2386c0e3db0e2c357adf55a4fdd0fa0e4ad7ab48a852c11ab1  ./kbld-linux-arm64
13b372e68e3c57b4af110230f62ca2f80561741e31a8c67d1b848932d6fa32bd  ./kbld-windows-amd64.exe
c856f5ccfbc362e96bf3fcffc2e2070f74aef067479981a40aeffd4924506702  ./kbld-darwin-arm64

Don't miss a new kbld release

NewReleases is sending notifications on new releases.