Skip to content

v0.43.2

Latest
Compare
Choose a tag to compare
@github-actions github-actions released this 03 Apr 16:53
· 9 commits to develop since this release
bf0e4ae

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/vendir/releases/download/v0.43.2/vendir-linux-amd64

# Move the binary in to your PATH
mv vendir-linux-amd64 /usr/local/bin/vendir

# Make the binary executable
chmod +x /usr/local/bin/vendir

Via Homebrew (macOS or Linux)

$ brew tap carvel-dev/carvel
$ brew install vendir
$ vendir version  

Verify checksums file signature

Install cosign on your system https://docs.sigstore.dev/system_config/installation/

The checksums file provided within the artifacts attached to this release is signed using Cosign with GitHub OIDC. 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/vendir/releases/download/v0.43.2/checksums.txt
curl -LO https://github.com/carvel-dev/vendir/releases/download/v0.43.2/checksums.txt.pem
curl -LO https://github.com/carvel-dev/vendir/releases/download/v0.43.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

Full Changelog: v0.43.1...v0.43.2

📂 Files Checksum

172e51a712dd38adecc1c2edaea505ed63079bb6a42f8d613a8da22476f61cf1  ./vendir-linux-amd64
284f06fe3fbb5d127a40962a9b75b2142636e4d8f767deaf7b470abca9775633  ./vendir-windows-amd64.exe
29cb3224debc23f1aaab46bb8f26bf0d094bdb8a557fdb6e4e04465077762e25  ./vendir-linux-arm64
6b53bf9d0f85daa7b2a1e7705d8fe74d62df624ac093cf7161bd9e77988b4963  ./vendir-darwin-amd64
d3f327c8fde2513742cbcb1ffe093c26aff7a87333a38be65b2f15f7e1945bc7  ./vendir-darwin-arm64