Azure / setup-kubectl

GitHub Action for installing Kubectl
MIT License
132 stars 49 forks source link

Action is failing to install kubectl due to wrong URL #74

Closed fasmat closed 1 year ago

fasmat commented 1 year ago

I've been trying to install version 1.23.15 (and all other 1.23.x) versions using this action but it always fails to download the tool.

It tries to download kubectl from the following URL:

https://github.com/Azure/setup-kubectl/blob/2eb2a370ffe43e1304c195fc41337b39c9757a0f/src/helpers.ts#L16

which doesn't seem to be correct. Instead it should be:

https://kubernetes.io/docs/tasks/tools/install-kubectl-linux/#install-kubectl-binary-with-curl-on-linux

github-actions[bot] commented 1 year ago

This issue is idle because it has been open for 14 days with no activity.

nevetS commented 1 year ago

I created a PR to address this issue. The download location moved away from storage.googleapis.com a while back. https://www.downloadkubernetes.com has the proper URLs (as referenced in the kubernetes documentation here https://kubernetes.io/releases/download/

PR #75

OliverMKing commented 1 year ago

I went ahead and released this in v3.2 (and v3). Thanks for the issue and help!