github carvel-dev/imgpkg v0.46.0

latest release: v0.46.1
4 months 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.46.0/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.46.0/checksums.txt
curl -LO https://github.com/carvel-dev/imgpkg/releases/download/v0.46.0/checksums.txt.pem
curl -LO https://github.com/carvel-dev/imgpkg/releases/download/v0.46.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

  • Make resume option faster by reusing the tar file instead of copying it to the side

Full Changelog: v0.45.0...v0.46.0

📂 Files Checksum

0a2fc4faef18c342d310357a948766818fda2c0753d42b26e23a58afa9cbf761  ./imgpkg-darwin-amd64
2f7543d3873e60776a8dfb5e4f329c7d2f476413247bb11f6e816a649be1d7a1  ./imgpkg-darwin-arm64
8b8801eecbcea1206e2e3d6c391288b092108eab93f8ff0d9bacd5059af697df  ./imgpkg-windows-amd64.exe
a57004ab4a52c3e9b3b1c2eeab76113b3cbffaa46142f56261bbf2d2fedc182a  ./imgpkg-linux-arm64
e21cb5f3ff185b6a5e93ce6114cd7120e8bafe658916a1b549d7c54fce806ced  ./imgpkg-linux-amd64

Don't miss a new imgpkg release

NewReleases is sending notifications on new releases.