Skip to content

v0.47.3

Compare
Choose a tag to compare
@github-actions github-actions released this 10 Sep 11:13
· 31 commits to develop since this release
a3c1ef5

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

Full Changelog: v0.47.2...v0.47.3

📂 Files Checksum

6c257250a8a555dc7b55f7d102abd3e17d9e0c942ea88fe814755af88561ca59  ./ytt-linux-arm64
75439d4e00c42f49b04f239b44324b6cb3fe76a43201f114de496c2f7914833f  ./ytt-linux-amd64
89dda0f1c90526d241c0fc2e1c5872a738323a7fa2fce7a2a9ff768c22656369  ./ytt-darwin-arm64
9b27c0fe5f7ffaa9adc839d80d0f99b24c96ca047853211955078de58073223f  ./ytt-darwin-amd64
c79429fd4757d3481000f29bf40fc4ce237d3084e8409339da653c4e1f4df26e  ./ytt-windows-arm64.exe
fabda32591dae22b0bb2bb55abd175e2ff93269b1abc38e032dbb673fd031c3a  ./ytt-windows-amd64.exe