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.2/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/imgpkgVia Homebrew (macOS or Linux)
$ brew tap carvel-dev/carvel
$ brew install imgpkg
$ imgpkg versionVerify 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.2/checksums.txt
curl -LO https://github.com/carvel-dev/imgpkg/releases/download/v0.48.2/checksums.txt.pem
curl -LO https://github.com/carvel-dev/imgpkg/releases/download/v0.48.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.comVerify 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-missingWhat's Changed
- build(deps): Bump golang.org/x/sys from 0.45.0 to 0.46.0 by @dependabot[bot] in #788
- Compare and cache registry hostnames case-insensitively; fix minor error-message grammar issues by @sameerforge in #795
Full Changelog: v0.48.1...v0.48.2
📂 Files Checksum
cc0b4267d2f9e07110996384cb23a0ecfe7ee8b71dbc683f338560d37d73953c ./imgpkg-darwin-amd64
c14c6f21d543c69b2e5ed4f0153e5c2a1371ac39dcc44ee9fdcf1c3339ba77e7 ./imgpkg-darwin-arm64
3172f46b42f6f67c962583fb81987d7143aa37a6d0364123e9a0bad43373cbda ./imgpkg-linux-arm64
1974667592fc9100848c2ab9871fb1d61b06ac5ced1a1dd9772d9fa3a5a8c8c7 ./imgpkg-linux-amd64
7eff7cba1212c7bd2112a38ec0678a389de16af6040a5843c77ba49350f5fd01 ./imgpkg-windows-amd64.exe