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.47.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/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.47.1/checksums.txt
curl -LO https://github.com/carvel-dev/imgpkg/releases/download/v0.47.1/checksums.txt.pem
curl -LO https://github.com/carvel-dev/imgpkg/releases/download/v0.47.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.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
- Bump golang.org/x/crypto from 0.35.0 to 0.45.0 by @dependabot[bot] in #764
- Bump golang to 1.25.6 by @CodesbyUnnati in #768
New Contributors
- @CodesbyUnnati made their first contribution in #768
Full Changelog: v0.47.0...v0.47.1
📂 Files Checksum
28b63732a6ee7bce9a9e3c98de8b53adaa51f83333fbb79ed5de2fc96fcb05ad ./imgpkg-darwin-arm64
6ad336f352e23ed68b9da7d2843e6784a9c913f7950edb56aec74c98e251e364 ./imgpkg-linux-amd64
c239b503edba511d7e12a839c4440f88b39633f120a4688b4e83aa191f7bbeb6 ./imgpkg-windows-amd64.exe
cc4aa100f9f0b0e86c0d206f253eb112b8014736ce9764dd3a997c08b16a661d ./imgpkg-darwin-amd64
ec80cb342d78d8b068f3fcda9e1c6b3f25c7efec860d5c8d413b8cb9d55bdc2e ./imgpkg-linux-arm64