Skip to content

Commit

Permalink
tool(kubectl): update version to 1.30.2 (#6255)
Browse files Browse the repository at this point in the history
  • Loading branch information
vvagaytsev authored Jul 3, 2024
1 parent 3a69be4 commit 7bc1512
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions core/src/plugins/kubernetes/kubectl.ts
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@ export function prepareConnectionOpts({
return opts
}

export const kubectlVersion = "1.30.1"
export const kubectlVersion = "1.30.2"
export const kubectlSpec: PluginToolSpec = {
name: "kubectl",
version: kubectlVersion,
Expand All @@ -367,31 +367,31 @@ export const kubectlSpec: PluginToolSpec = {
platform: "darwin",
architecture: "amd64",
url: `https://storage.googleapis.com/kubernetes-release/release/v${kubectlVersion}/bin/darwin/amd64/kubectl`,
sha256: "eaefb69cf908b7473d2dce0ba894c956b7e1ad5a4987a96d68a279f5597bb22d",
sha256: "0371b7bcc060f533170ac6fb99bc9aa13fdf3fa005276e3eb14eed162ed8a3a9",
},
{
platform: "darwin",
architecture: "arm64",
url: `https://storage.googleapis.com/kubernetes-release/release/v${kubectlVersion}/bin/darwin/arm64/kubectl`,
sha256: "55dec3c52702bd68488a5c1ab840b79ea9e73e4b9f597bcf75b201c55d0bd280",
sha256: "ffcba19e77b9521f5779ab32cfcd4bfcc9d20cd42c2f075c7c5aef83f32754ae",
},
{
platform: "linux",
architecture: "amd64",
url: `https://storage.googleapis.com/kubernetes-release/release/v${kubectlVersion}/bin/linux/amd64/kubectl`,
sha256: "5b86f0b06e1a5ba6f8f00e2b01e8ed39407729c4990aeda961f83a586f975e8a",
sha256: "c6e9c45ce3f82c90663e3c30db3b27c167e8b19d83ed4048b61c1013f6a7c66e",
},
{
platform: "linux",
architecture: "arm64",
url: `https://storage.googleapis.com/kubernetes-release/release/v${kubectlVersion}/bin/linux/arm64/kubectl`,
sha256: "d90446719b815e3abfe7b2c46ddf8b3fda17599f03ab370d6e47b1580c0e869e",
sha256: "56becf07105fbacd2b70f87f3f696cfbed226cb48d6d89ed7f65ba4acae3f2f8",
},
{
platform: "windows",
architecture: "amd64",
url: `https://storage.googleapis.com/kubernetes-release/release/v${kubectlVersion}/bin/windows/amd64/kubectl.exe`,
sha256: "f7391a2de0491caadedb5178ac2485cbf104189b2e0f3d6c577bd6ea1892898f",
sha256: "59a5b1028f6e3aea046b103f9a787cf4d70067d554053f713d691b14df3d9bb4",
},
],
}

0 comments on commit 7bc1512

Please sign in to comment.