Skip to content

Commit 3c4bdcd

Browse files
authored
fix: kubectl install command (#346)
* fix: kubectl install command * fix: wrong URL (hardcoded architecture + paste mistake)
1 parent 3c127b2 commit 3c4bdcd

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

base/scripts/install-kubectl.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ case $ARCH in
1616
;;
1717
esac
1818

19-
curl -LO https://storage.googleapis.com/kubernetes-release/release/$(curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)/bin/linux/$ARCHITECTURE/kubectl
19+
curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/$ARCHITECTURE/kubectl"
2020
chmod +x ./kubectl
2121
mv ./kubectl /usr/local/bin/kubectl
2222
echo 'source <(kubectl completion bash)' >> ${HOME}/.bashrc

0 commit comments

Comments
 (0)