v0.60.0
github-actions
released this
19 Jan 13:59
·
71 commits
to develop
since this release
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.60.0/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/kapp
Via 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.60.0/checksums.txt
curl -LO https://github.com/carvel-dev/kapp/releases/download/v0.60.0/checksums.txt.pem
curl -LO https://github.com/carvel-dev/kapp/releases/download/v0.60.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
- kapp app-group deploy should order based on folder names by @rjtch in #850
- Add profiling flags (based on kubectl) by @praveenrewar in #862
- update-docs by @prashantrewar in #870
- added 'appsv1.DeploymentReplicaFailure' condition by @jignyasamishra in #878
- Moved TestAppKindChangeWithMetadataOutput to a separate file by @jignyasamishra in #880
- sign release artifacts using cosign by @prashantrewar in #877
- Memory optimization by @praveenrewar in #863
- Bump go version to 1.21.6 by @sethiyash in #882
New Contributors
- @rjtch made their first contribution in #850
- @prashantrewar made their first contribution in #870
- @jignyasamishra made their first contribution in #878
Full Changelog: v0.59.0...v0.60.0
📂 Files Checksum
7be696bde55f504d665105ac4da3b8159473cf5997dd49a20302cb5c453a3a84 ./kapp-windows-amd64.exe
7cc17971634da69c80d7159199c2c514c38b479d28987e055ce2c173bfbd9306 ./kapp-linux-amd64
7fa5e9e9aff5c29eb170252ba56b598038e7e141c5c7afa60e81b872e96c8729 ./kapp-darwin-arm64
8746b9b49c47f27b9b08f425f247a3ea0b847f5cb9a1b88e4cff6c036112c7d7 ./kapp-darwin-amd64
9847fa6f7122451e14833d9aaa376692dfc9fe2895ceb3a7159616a8041b68f5 ./kapp-linux-arm64