github carvel-dev/ytt v0.53.0

16 hours 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.53.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.53.0/checksums.txt
curl -LO https://github.com/carvel-dev/ytt/releases/download/v0.53.0/checksums.txt.pem
curl -LO https://github.com/carvel-dev/ytt/releases/download/v0.53.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

New Contributors

Full Changelog: v0.52.2...v0.53.0

📂 Files Checksum

2e4986f44f3908a0a220b645587eab4d0ec70ff4a6818ca26d3a44e29e25f13c  ./ytt-linux-amd64
37fb4c7528e025582bc74a0692dded61f85e9192ddf4263fdebdeb8c7cd82660   ./ytt-darwin-amd64
403dcbd6fef85bf40a086348f25c0ae3a817ad761755df4fe8cf5276dad18995   ./ytt-darwin-arm64
5316ea78cdd03a65d4c508b8af57670b461057c4f0050de12661af7125ba2e16   ./ytt-windows-amd64.exe
581863d3b27474bfcbb6101bfe070dfc9a1e3d914b197a7195a6bbdc92a21fc4   ./ytt-windows-arm64.exe
9260208e471595fb32fc70bd7e2e0f5915ebe6b0663c0f944a627adb34806cf5   ./ytt-linux-riscv64
f4922e95801bc2b9b4baf553d4650b9300670e2821e20690026f1bfd78cf8cd5   ./ytt-linux-arm64


Don't miss a new ytt release

NewReleases is sending notifications on new releases.