Skip to content

Releases: carvel-dev/kapp

v0.62.0

16 Apr 10:22
Compare
Choose a tag to compare

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.62.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.62.0/checksums.txt
curl -LO https://github.com/carvel-dev/kapp/releases/download/v0.62.0/checksums.txt.pem
curl -LO https://github.com/carvel-dev/kapp/releases/download/v0.62.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

  • 🚨 For library users 🚨 the go module name changes to carvel.dev/kapp this is a breaking change on this version, no impact for users that only use the binaries

Full Changelog: v0.61.0...v0.62.0

📂 Files Checksum

b4b980d4bc97508bec2416bc50888f55c7e4d96ada71a072003d2eee571db995  ./kapp-darwin-amd64
88d6ed91f87571e892b60fc57b2e3526cb49db0c22531da392cd380c6b4a8ede  ./kapp-darwin-arm64
6eb24733364213967c434ca77a7b3516f80c962e1da1ba57ce4c495556cf1585  ./kapp-linux-amd64
10e2e0b165202ae355501516f0b34de066523a384970f8423d8295ca79c16133  ./kapp-linux-arm64
24e178632b915f5a9814cc4d8a25c67256dfb3d7957bd72b080340099b0b7ac8  ./kapp-windows-amd64.exe

v0.61.0

15 Apr 18:48
6e71814
Compare
Choose a tag to compare

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

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

v0.60.1

15 Apr 18:47
dcc998b
Compare
Choose a tag to compare

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.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.60.1/checksums.txt
curl -LO https://github.com/carvel-dev/kapp/releases/download/v0.60.1/checksums.txt.pem
curl -LO https://github.com/carvel-dev/kapp/releases/download/v0.60.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 Changed

Full Changelog: v0.60.0...v0.60.1

📂 Files Checksum

abf7e55f53cdeaf7eb595121249af49ca783f52bb9ca61785cf4f0b2e19059f8  ./kapp-darwin-amd64
3b70daa4be3a87bc823b98268024e86ea28a367f99fed5059fe637c600e5f0d7  ./kapp-darwin-arm64
e9c20d0859a749ed71a472f5516c9cf65c739c2855ccd152f369820539fa7a8c  ./kapp-linux-amd64
a67e312b79939d91dbcb0c46908efcc01f6a87e7819cad128fef417e990fa360  ./kapp-linux-arm64
26da4c76cf48a105f5a8d35c9de9695f311515561ea7816947bcfc8808b8d434  ./kapp-windows-amd64.exe

v0.60.0

19 Jan 13:59
9edad25
Compare
Choose a tag to compare

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

New Contributors

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

v0.59.3

16 Apr 10:09
a170524
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.59.2...v0.59.3

📂 Files Checksum

7aa95e47e7c2a8c867de6d0af6f74182d8247267784a44668b760c44f201f461  ./kapp-darwin-amd64
6be47a301146fb74c1460e5f48435a9d885d2b3e75a23a3deec5808b8a928d0f  ./kapp-darwin-arm64
d581c368a54b00e6addebf9f880b2844ef997c312b80bb8f664162a7df3e2b73  ./kapp-linux-amd64
b2a9627239c13facbdd68eb4e683bbf645503c466da132668133e880969d6c16  ./kapp-linux-arm64
d16392a329e1a8bde95e6526943b80ae44eecce334d0ef1866e04737f07a8868  ./kapp-windows-amd64.exe

v0.59.2

15 Dec 07:11
2ed2324
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.59.1...v0.59.2

📂 Files Checksum

03d8ef43aa467756a22fea6d32745b3bddef163fa22de4f8b5edd1d60fdc0585  ./kapp-linux-arm64
694518413f78698209253b11bb280933057839c0ef303295e8abf03dec289c7e  ./kapp-windows-amd64.exe
6986369c06e89bcec366b2cc18f81634fcd95e2b52c6c6f7ee46b497ade25f7d  ./kapp-linux-amd64
a404ed1bee2e0cb1a09498a991a3c897ee2ad08134a4eff01529ff73d7b47f3a  ./kapp-darwin-arm64
c20034a347bf90d977daac29eadbb4db4a7dc172a18a9d27fe0a48c39c124d27  ./kapp-darwin-amd64

v0.59.1

30 Oct 13:56
0610c41
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.59.0...v0.59.1

📂 Files Checksum

2b944972c011c8f5ccc0674a1e7c706985b08ce921367bc821cbd0ce81f94a01  ./kapp-windows-amd64.exe
30545b3462a5125dc32056ee9a87f30ced001ad04dd045b5f4d3dc6bc41da997  ./kapp-darwin-arm64
377e4bb84d44b9d80d68ed5b473036f20b3aab1eb5f2f6cc80c2df09ecd0fbf8  ./kapp-darwin-amd64
a0e4eccdc264b535d7b0ba1972b6fd29cd5aa1263ab7e996d5a4671253fd3cf9  ./kapp-linux-arm64
a6da34c733514c2c51b96a12e70cd050250a45b2ee75d6966a904e712b307d15  ./kapp-linux-amd64

v0.59.0

19 Sep 13:57
5dc9ceb
Compare
Choose a tag to compare

What's Changed

🔈 Callouts

Full Changelog: v0.58.0...v0.59.0

📂 Files Checksum

0954a8343d1ef7dac131e2212efd6ff1e2f39c898a242f280c4889e6acfc38e3  ./kapp-darwin-arm64
59a8ddcacf82cec055f0ca9e66b1ea90ade138792db1b1ddaa72d653cc6d93ba  ./kapp-linux-arm64
ac1f2bd9f43f0d77465f8f4e4b2540a498c6fd3228d7e8452e360d66e04344c7  ./kapp-darwin-amd64
b664210ecb9330f6f05c3a0d19eb801d4f8d07d2bd2198d01e7cd8f0301be6ae  ./kapp-windows-amd64.exe
cc1cca783173badd5e74edc1f10decfcae85525cfece73b3d43acfda1eaccbe5  ./kapp-linux-amd64

v0.58.0

25 Jul 12:42
0c34e94
Compare
Choose a tag to compare

✨ What's new

  • Library bumps
  • Replaced github.com/ghodss/yaml with sigs.k8s.io/yaml (#778) by @Juneezee
  • Introduced diffAgainstExistingFieldExclusionRules, a new config for excluding fields while diffing recourses (#760) by @theurichde
    • This is beneficial for fields that are always managed by the cluster, like status.
    • It is enabled by default for the status field.

Full Changelog: v0.57.1...v0.58.0

🔈 Callouts

Thanks to

For helping out with this release

📂 Files Checksum

e71048d2b11a2c10258079cc134d7d2c2b6584429202a6212306380d3a8c0a30  ./kapp-darwin-amd64
3660dd8efe83c1356e05255307fa6f65825ba694d96b93bc38c6a43d7e6d7a8c  ./kapp-darwin-arm64
b253ea9cf6add07f9497955147dc12e8612c24c36dc9929c9a4fecdc76752bd3  ./kapp-linux-amd64
25491298f6783a8b337d2ebdecf749f7750cf10260fe37086315a9c7da0b558f  ./kapp-linux-arm64
b026d7a7da37fee8475afb81eeea7523cc7f4ec9ab4913c4b2e4d7401289230b  ./kapp-windows-amd64.exe

v0.54.10

15 Dec 07:00
e90bcf5
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.54.9...v0.54.10

📂 Files Checksum

7424a73f78148eb756a9a13efc073a76c8406320e5e4c7b85e51a1c967c6a84e  ./kapp-darwin-amd64
902ada87e23ae8bd22023f935f1223f0f10fbfe8293354c7c5df58789a9637a1  ./kapp-darwin-arm64
cd84173f07efb7a266aabb694164e22e09a7a6cf5606f206ce5d2739e4c3d1d3  ./kapp-linux-amd64
ce60a131cd557bd6c8a044bf4e31726103542905f2c83b61666b52d8e3190ce5  ./kapp-linux-arm64
f1273dd2b21951dcda2c230acf701f90721fd75d91912877837f180bef8ce2c4  ./kapp-windows-amd64.exe