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/ytt/releases/download/v0.50.0/ytt-linux-amd64
# Move the binary in to your PATH
mv kapp-linux-amd64 /usr/local/bin/ytt
# Make the binary executable
chmod +x /usr/local/bin/ytt
Via Homebrew (macOS or Linux)
$ brew tap carvel-dev/carvel
$ brew install ytt
$ ytt 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/ytt/releases/download/v0.50.0/checksums.txt
curl -LO https://github.com/carvel-dev/ytt/releases/download/v0.50.0/checksums.txt.pem
curl -LO https://github.com/carvel-dev/ytt/releases/download/v0.50.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 Changed
- Bump golang to 1.22.5 by @devanshuVmware in #923
- Print full path rather than RelativePath only by @ernstvonoelsen in #903
New Contributors
- @devanshuVmware made their first contribution in #923
Full Changelog: v0.49.0...v0.50.0
📂 Files Checksum
01bbd9490c48309909ef7e314fcaf284667017c31321dc4edc30e2edf0dfa1c1 ./ytt-windows-arm64.exe
4067a41d44d977b5bd492c227ae9cc62d803df788ec9f4d612f89090eb01e946 ./ytt-windows-amd64.exe
61dec6e00131f990db853afc4b7531c318bd3af3ba18f2cfdbc0d5e83a45c445 ./ytt-linux-amd64
d79f0b4189403c4142f5c646989de0769a316896a6096dfd1719605d313e8d1e ./ytt-darwin-amd64
f38290c2666ddcf6feb4907f91033c4f41022b3fb84893c42d1f48948597b82a ./ytt-linux-arm64
f3ce72031d34f0a3d909b1c971017bb3788bb786d3bb5cba1bf6d699255be643 ./ytt-darwin-arm64