Skip to content

Commit

Permalink
improvement(k8s): update kubectl version to 1.29.4 (#5973)
Browse files Browse the repository at this point in the history
* improvement(k8s): update `kubectl` version to `1.29.4`

* ci: update kindest/node image versions
  • Loading branch information
vvagaytsev committed Apr 25, 2024
1 parent 746f038 commit 5fff93d
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 @@ -1380,12 +1380,12 @@ workflows:
- test-kind:
name: vm-1.29-kind
requires: [build]
kindNodeImage: kindest/node:v1.29.2@sha256:acc9e82a5a5bd3dfccfd03117e9ef5f96b46108b55cd647fb5e7d0d1a35c9c6f
kindNodeImage: kindest/node:v1.29.2@sha256:51a1434a5397193442f0be2a297b488b6c919ce8a3931be0ce822606ea5ca245

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

# 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.2"
export const kubectlVersion = "1.29.4"
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: "bb04d9450d9c9fa120956c5cc7c8dfaa700297038ff9c941741e730b02bbd1f3",
sha256: "7af9b8a233c49ad5eecb59004719e0bc07972492b674ebbce2919e53326b55b2",
},
{
platform: "darwin",
architecture: "arm64",
url: `https://storage.googleapis.com/kubernetes-release/release/v${kubectlVersion}/bin/darwin/arm64/kubectl`,
sha256: "ce030f86625df96560402573d86d4e6f4b8b956ca3e3b9df57cb8ccf2b9a540c",
sha256: "b3a881e6208aa41275a97481676a8c8a3c16282f3cd7b441b17f258a054012f1",
},
{
platform: "linux",
architecture: "amd64",
url: `https://storage.googleapis.com/kubernetes-release/release/v${kubectlVersion}/bin/linux/amd64/kubectl`,
sha256: "7816d067740f47f949be826ac76943167b7b3a38c4f0c18b902fffa8779a5afa",
sha256: "10e343861c3cb0010161e703307ba907add2aeeeaffc6444779ad915f9889c88",
},
{
platform: "linux",
architecture: "arm64",
url: `https://storage.googleapis.com/kubernetes-release/release/v${kubectlVersion}/bin/linux/arm64/kubectl`,
sha256: "3507ecb4224cf05ae2151a98d4932253624e7762159936d5347b19fe037655ca",
sha256: "61537408eedcad064d7334384aed508a8aa1ea786311b87b505456a2e0535d36",
},
{
platform: "windows",
architecture: "amd64",
url: `https://storage.googleapis.com/kubernetes-release/release/v${kubectlVersion}/bin/windows/amd64/kubectl.exe`,
sha256: "5107162e20ef6e6f06c2db37e56da5db552858d83fa43b51787bf48c6e6d1caf",
sha256: "23ea3fce3a784b28e9445c1f813bdcdbd1270f92711f44f6e5772fa2ec2ce238",
},
],
}

0 comments on commit 5fff93d

Please sign in to comment.