1
0
Fork 0
mirror of https://gitlab.com/mlunax/dotfiles.git synced 2025-04-04 18:20:18 +00:00

add devops script

This commit is contained in:
Luna 2022-04-11 12:32:20 +02:00
parent 662e165e60
commit a0df4bf5b2
No known key found for this signature in database
GPG key ID: DE9E9D23CD19A149

6
install-devops.tools.sh Normal file
View file

@ -0,0 +1,6 @@
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