github carvel-dev/imgpkg v0.48.0

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

  • b48fe70 build(deps): Bump github.com/awslabs/amazon-ecr-credential-helper/ecr-login
  • f63f6d1 build(deps): Bump github.com/docker/cli
  • 7b0464b build(deps): Bump golang.org/x/sys from 0.42.0 to 0.44.0
  • 2566095 build(deps): update CLI framework and test-generation tooling

Full Changelog: v0.47.2...v0.48.0

📂 Files Checksum

11104d72e3bf1e20e932379606ffa3cdfd2bed48daacf7f118d5e0f9010609c7  ./imgpkg-darwin-amd64
a29b22c1992ede7d3274520c2efd4672c697ca5f5857d7c2a7af74cfb9c8c243  ./imgpkg-darwin-arm64
63719b10884f95b83b7dc0831257869dadfe02ea7c68b7c9fdcb35ba687d5cf5  ./imgpkg-linux-arm64
c35814ecab145c28700e9cc86826ed08942f17162cb1fb796e075058b022488c  ./imgpkg-linux-amd64
8402a4c6edacaa77f543b32f2134c8acaf2641f63e2cb7e2e95f939122dba8ad  ./imgpkg-windows-amd64.exe

Don't miss a new imgpkg release

NewReleases is sending notifications on new releases.