v0.63.1
github-actions
released this
04 Jul 10:39
·
24 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.63.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/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.63.1/checksums.txt
curl -LO https://github.com/carvel-dev/kapp/releases/download/v0.63.1/checksums.txt.pem
curl -LO https://github.com/carvel-dev/kapp/releases/download/v0.63.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.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 new
- Add change validation for maximum constraints to CRD Upgrade safety preflight check by @rashmigottipati in #951
- Add configuration to permissions pre-flight check to use
SelfSubjectAccessReview
orSelfSubjectRulesReview
by @everettraven in #931 - Add handling of updates to default values to the CRD Upgrade Safety preflight check by @rashmigottipati in #950
- Add handling of updates to required fields to the CRD Upgrade Safety preflight check by @rashmigottipati in #933
- Allow custom wait rules for kapp-controller resources by @praveenrewar in #932
- Do not remove usedGKs when all resources are deleted by @praveenrewar in #928
- Make fields of Resource Filter Flags accessible outside the package by @rohitagg2020 in #941
- Update cron-job apiversion by @jmcudd in #947
- Add validation for changes to minimum constraints for CRD fields by @everettraven in #944
New Contributors
Full Changelog: v0.62.0...v0.63.1
📂 Files Checksum
2bdd36a64c1d40ac9666cf8fe64e89bd2064d31989f837a6c15ef4198a896799 ./kapp-darwin-arm64
3eed107de438378b35e619b37791512984e870e7e647fea312226a0e6fc9cd43 ./kapp-linux-amd64
8ad9d09844fd0710537190e1743b8fbcbe02b05f8180151e3420908120731071 ./kapp-darwin-amd64
aa8874eb186344601e4ff695de6406b06324039061c301cffd4a039618c021b9 ./kapp-windows-amd64.exe
fecd32c9760da68791e591afffd53ce0a935471bf40d1e3fd941e602d7becb04 ./kapp-linux-arm64