diff --git a/install-devops.tools.sh b/install-devops.tools.sh new file mode 100644 index 0000000..3563148 --- /dev/null +++ b/install-devops.tools.sh @@ -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 \ No newline at end of file