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.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.43.0/checksums.txt
curl -LO https://github.com/carvel-dev/vendir/releases/download/v0.43.0/checksums.txt.pem
curl -LO https://github.com/carvel-dev/vendir/releases/download/v0.43.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 golang version to 1.23 by @devanshuVmware in #404
Full Changelog: v0.42.0...v0.43.1
📂 Files Checksum
0895efdc3fe36f37035ce96169e8cc335a103adcfe02092fcc29f514be8867e7 ./vendir-linux-arm64
3d31f00efc0a11a8dfcf662d45a120d18f99105d1502bbfe12a6cbd9d0b1f570 ./vendir-linux-amd64
693d956011994b5be2491f7534faae1cb0a07cfed911cf5b9e0f3da65db36707 ./vendir-darwin-amd64
6aa8183d0ba729e5f4132fbb11e63ba08f5cfbd4e3c3b299bdb142d61145ca1c ./vendir-windows-amd64.exe
ffa520a0604cb2831937c232bd89bd4e27afc12f16459f35e6f92cb69bd08d5a ./vendir-darwin-arm64