v0.61.0
github-actions
released this
15 Apr 18:48
·
50 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.61.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.61.0/checksums.txt
curl -LO https://github.com/carvel-dev/kapp/releases/download/v0.61.0/checksums.txt.pem
curl -LO https://github.com/carvel-dev/kapp/releases/download/v0.61.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 new
- Add preflight check implementation, add permission validation preflight check by @everettraven in #887
- Update --preflight command line option by @tmshort in #894
- Make version more flexible to allow kapp to be used as a library by @joaopapereira in #897
- Update copyright header template to be entity agnostic, update existing headers by @everettraven in #903
- Add support for preflight check configuration by @tmshort in #900
- Add CRD Upgrade Safety preflight check by @everettraven in #901
- Fix missing app deletion in app-group deploy by @praveenrewar in #910
- Default rule to make sure service-account is created before secret associated with that service-account by @sethiyash in #895
- Add validation to CRDUpgradeSafety preflight check to prevent removal of existing fields by @rashmigottipati in #922
- Bumping go version to 1.22.2 by @rcmadhankumar in #926
- Add handling of updates to a field's enum values to the CRD Upgrade Safety preflight check by @everettraven in #921
🔈 Callouts
- @everettraven made their first contribution in #887
- @tmshort made their first contribution in #894
- @rashmigottipati made their first contribution in #922
Full Changelog: v0.60.0...v0.61.0
📂 Files Checksum
f6b5cf65e6257dbf16fbcf5c2e238cca8ff66b6a54f350b222b21d8b84a0c66d ./kapp-darwin-amd64
3411d2ccdb48b55646b7ec80595d5c3dc8ca1290f846979115d18db66d778c2d ./kapp-darwin-arm64
efaa3e793448961f6367c04fbc5b0e2c5063bdf5eda9364c7f1d495458da624b ./kapp-linux-amd64
8985539984481228ce1db0dc2557efd470269cc1ac0a934a03feed1f8ad2f159 ./kapp-linux-arm64
1558cf3bb033cf16362d5ef86336e683689922572d21aa873e7fe8a93b3975fc ./kapp-windows-amd64.exe