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.1/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.1/checksums.txt
curl -LO https://github.com/carvel-dev/kapp/releases/download/v0.65.1/checksums.txt.pem
curl -LO https://github.com/carvel-dev/kapp/releases/download/v0.65.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-missing✨ What's new
- Bump Golang to 1.25.7 by @CodesbyUnnati in #1109
- Migrate ytt dependency by @Siegfriedk in #1109
Full Changelog: v0.65.0...v0.65.1
📂 Files Checksum
057d7fe33dd6afeb452a888d37995f789b9de0778ce4908896e37d37c52e6ead ./kapp-linux-amd64
05be91c13b02646ed31b053720cbe27b840b10c62fa7a565fbfe817ce45ed97f ./kapp-darwin-arm64
1d92b138d8cf93ae627a3b9dbb1f31fc3d6d6298304f90fdbc122acf3b84c13a ./kapp-linux-arm64
50f60126a3ab91b220ecf9f81b4da05a68231ad6fc5e944a1448bafab3d70774 ./kapp-darwin-amd64
fc40792f6c363b98ecf4d08fd95ce79ececc1076629eb3f1b5a2413b22a6ace2 ./kapp-windows-amd64.exe