github carvel-dev/imgpkg v0.48.1

4 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/imgpkg/releases/download/v0.48.1/imgpkg-linux-amd64

# Move the binary in to your PATH
mv imgpkg-linux-amd64 /usr/local/bin/imgpkg

# Make the binary executable
chmod +x /usr/local/bin/imgpkg

Via Homebrew (macOS or Linux)

$ brew tap carvel-dev/carvel
$ brew install imgpkg
$ imgpkg 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/imgpkg/releases/download/v0.48.1/checksums.txt
curl -LO https://github.com/carvel-dev/imgpkg/releases/download/v0.48.1/checksums.txt.pem
curl -LO https://github.com/carvel-dev/imgpkg/releases/download/v0.48.1/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

Full Changelog: v0.48.0...v0.48.1

📂 Files Checksum

db80447d06804162ba141689e1ca50cbbb59bb6355c1017f0838320e775ee2c7  ./imgpkg-darwin-amd64
00635d53892afe1c36d134f8e67650e767d74e754cc460b68797977044582d7f  ./imgpkg-darwin-arm64
ce7243af30411581474ab86051774626b34c5b95ff1d030b3ee979ebddaf795d  ./imgpkg-linux-arm64
6c7a1a2e6555e7827c3c97580be87c84d06778d0650d308f7dc67613aec7c7c8  ./imgpkg-linux-amd64
3a1640c36d8dd6ef8e0adbe1f2495b346ff4c31f060ee472271d4f56d89454eb  ./imgpkg-windows-amd64.exe

Don't miss a new imgpkg release

NewReleases is sending notifications on new releases.