Skip to content

Commit

Permalink
improvement(k8s): update kubectl version to 1.29.2 (#5756)
Browse files Browse the repository at this point in the history
Update kubectl and kind image in CI:

* use `kubectl` version `1.29.2`
* use `kindest/node` version `1.29.2` in CI
  • Loading branch information
vvagaytsev committed Feb 20, 2024
1 parent bd8a631 commit 1f12b3f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .circleci/continue-config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1352,12 +1352,12 @@ workflows:
- test-kind:
name: vm-1.29-kind
requires: [build]
kindNodeImage: kindest/node:v1.29.0@sha256:54a50c9354f11ce0aa56a85d2cacb1b950f85eab3fe1caf988826d1f89bf37eb
kindNodeImage: kindest/node:v1.29.2@sha256:acc9e82a5a5bd3dfccfd03117e9ef5f96b46108b55cd647fb5e7d0d1a35c9c6f

- test-plugins:
<<: *only-internal-prs
requires: [build]
kindNodeImage: kindest/node:1.29.0@sha256:54a50c9354f11ce0aa56a85d2cacb1b950f85eab3fe1caf988826d1f89bf37eb
kindNodeImage: kindest/node:1.29.2@sha256:acc9e82a5a5bd3dfccfd03117e9ef5f96b46108b55cd647fb5e7d0d1a35c9c6f

# This is only for edge release (Overrides version to edge-bonsai)
- build:
Expand Down
12 changes: 6 additions & 6 deletions core/src/plugins/kubernetes/kubectl.ts
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ export function prepareConnectionOpts({
return opts
}

export const kubectlVersion = "1.29.1"
export const kubectlVersion = "1.29.2"
export const kubectlSpec: PluginToolSpec = {
name: "kubectl",
version: kubectlVersion,
Expand All @@ -364,31 +364,31 @@ export const kubectlSpec: PluginToolSpec = {
platform: "darwin",
architecture: "amd64",
url: `https://storage.googleapis.com/kubernetes-release/release/v${kubectlVersion}/bin/darwin/amd64/kubectl`,
sha256: "c4da86e5c0fc9415db14a48d9ef1515b0b472346cbc9b7f015175b6109505d2c",
sha256: "bb04d9450d9c9fa120956c5cc7c8dfaa700297038ff9c941741e730b02bbd1f3",
},
{
platform: "darwin",
architecture: "arm64",
url: `https://storage.googleapis.com/kubernetes-release/release/v${kubectlVersion}/bin/darwin/arm64/kubectl`,
sha256: "c31b99d7bf0faa486a6554c5f96e36af4821a488e90176a12ba18298bc4c8fb0",
sha256: "ce030f86625df96560402573d86d4e6f4b8b956ca3e3b9df57cb8ccf2b9a540c",
},
{
platform: "linux",
architecture: "amd64",
url: `https://storage.googleapis.com/kubernetes-release/release/v${kubectlVersion}/bin/linux/amd64/kubectl`,
sha256: "69ab3a931e826bf7ac14d38ba7ca637d66a6fcb1ca0e3333a2cafdf15482af9f",
sha256: "7816d067740f47f949be826ac76943167b7b3a38c4f0c18b902fffa8779a5afa",
},
{
platform: "linux",
architecture: "arm64",
url: `https://storage.googleapis.com/kubernetes-release/release/v${kubectlVersion}/bin/linux/arm64/kubectl`,
sha256: "96d6dc7b2bdcd344ce58d17631c452225de5bbf59b83fd3c89c33c6298fb5d8b",
sha256: "3507ecb4224cf05ae2151a98d4932253624e7762159936d5347b19fe037655ca",
},
{
platform: "windows",
architecture: "amd64",
url: `https://storage.googleapis.com/kubernetes-release/release/v${kubectlVersion}/bin/windows/amd64/kubectl.exe`,
sha256: "d48a0b160f361bac2d7cb3e19c755e70f2ae8d7d15c89f52d33b66dd9ba5b89c",
sha256: "5107162e20ef6e6f06c2db37e56da5db552858d83fa43b51787bf48c6e6d1caf",
},
],
}

0 comments on commit 1f12b3f

Please sign in to comment.