Skip to content

v0.45.0

Latest

Choose a tag to compare

@github-actions github-actions released this 17 Nov 18:07
e26e467

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

New Contributors

Full Changelog: v0.44.0...v0.45.0

📂 Files Checksum

4bce3c5341f1f1566fde617bfabaee16b26e26f6d0e8b4394780a03d57b248a5  ./vendir-darwin-amd64
6ff67773916bf1587533daf912a24d0fc5c5914e90aa6cd9099b22a480cd0a53  ./vendir-darwin-arm64
779d4fe4170a472523bb1fcd0a591e460ff417381abd92ba8d2d8b7fa91f5531  ./vendir-windows-amd64.exe
d60ad65bbd0658d377f2dcf57b3119f16c5a3a7eeaf80019a3d243a620404d7e  ./vendir-linux-amd64
f2b517cfa1a843ffc7b9beb37146ffd8157a5c842138c4f6a5728f708115dbfd  ./vendir-linux-arm64