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/kapp/releases/download/v0.65.4/kapp-linux-amd64
# Move the binary in to your PATH
mv kapp-linux-amd64 /usr/local/bin/kapp
# Make the binary executable
chmod +x /usr/local/bin/kappVia Homebrew (macOS or Linux)
$ brew tap carvel-dev/carvel
$ brew install kapp
$ kapp version Verify checksums file signature
The checksums file provided within the artifacts attached to this release is signed using Cosign with GitHub OIDC(Refer this page for cosign installation). 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/kapp/releases/download/v0.65.4/checksums.txt
curl -LO https://github.com/carvel-dev/kapp/releases/download/v0.65.4/checksums.txt.pem
curl -LO https://github.com/carvel-dev/kapp/releases/download/v0.65.4/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
- Allow non-approved MD5 use under GODEBUG=fips140=only by @sameerforge in #1133
Full Changelog: v0.65.3...v0.65.4
📂 Files Checksum
bf7df0647d7645572d45185bb8bf6a40dd1e631ff4ee1522bc8ce56db53bd243 ./kapp-linux-amd64
e41693ac3d69e1143c7e5fe870712ca05ed810e1e0bc5b00f77ca22ba0f18ae1 ./kapp-linux-arm64
d2f6a45c09703f2aff01422cc130f00f702094757c17804ab18de4dda2249ada ./kapp-darwin-amd64
a7ecd6a2ac62fdce02bb40784f2701e2421539e4bae6c3cd58dc8e943170c666 ./kapp-darwin-arm64
e9c0c3e48ba2b3c26380b6a997dcf1798b19147c3e9a11895a4e9c55c52470b0 ./kapp-windows-amd64.exe