Skip to content

Commit

Permalink
Update kubectl-util.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
Luukxt8 authored Jul 26, 2020
1 parent 2c8e7a0 commit d7535ef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/utilities/kubectl-util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ function getExecutableExtension(): string {
export function getkubectlDownloadURL(version: string): string {
switch (os.type()) {
case 'Linux':
return util.format('https://storage.googleapis.com/kubernetes-release/release/%s/bin/linux/amd64/kubectl', version);
return util.format('https://storage.googleapis.com/kubernetes-release/release/%s/bin/linux/arm/kubectl', version);

case 'Darwin':
return util.format('https://storage.googleapis.com/kubernetes-release/release/%s/bin/darwin/amd64/kubectl', version);
Expand Down Expand Up @@ -74,4 +74,4 @@ export function getTrafficSplitAPIVersion(kubectl: Kubectl): string {
}

return trafficSplitAPIVersion;
}
}

0 comments on commit d7535ef

Please sign in to comment.