github carvel-dev/ytt v0.52.2

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

  • Bump golang to 1.24.11 in #970

Full Changelog: v0.52.1...v0.52.2

📂 Files Checksum

02e1db4bce02f72a48312efca36fd1feb0d356ce21029e42916a88b17577b877  ./ytt-darwin-arm64
295cc5eb40091ad66c1093b955b73f290b5336a0b702e6318ba67a691b4031cb  ./ytt-linux-riscv64
3abce3c1233e328e1cc11161b85d5c162fae04425ac1bbf4d29e6ba54781ff91  ./ytt-linux-arm64
5242b9078abd483da46f13f715254f415b6328b2d979af24a4074b56007a43ba  ./ytt-windows-arm64.exe
76d5355a5135c59a1791f420f3094579f775cbf2a987328f920a05e1338f1e1f  ./ytt-linux-amd64
8d7904ef61cd26e5bd94cd0e0cfc5cd4e7d5501845290034bfe87fee05cecb03  ./ytt-windows-amd64.exe
cde68e057a9a0a175eb7366bc8ab5f358f7ffb7ed736cfac8b37ef98444da918  ./ytt-darwin-amd64


Don't miss a new ytt release

NewReleases is sending notifications on new releases.