1
0
Fork 0
mirror of https://gitlab.com/mlunax/dotfiles.git synced 2025-04-04 18:20:18 +00:00
dotfiles/install-devops.tools.sh
2022-04-11 12:32:20 +02:00

6 lines
No EOL
245 B
Bash

if ! type "kubectl" > /dev/null; then
tmp_path=/tmp/kubectl
curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl" -o $tmp_path
install $tmp_path $HOME/.local/bin
rm $tmp_path
fi