From f39e3cb76da839bb9771085dc7384bcb6c64a481 Mon Sep 17 00:00:00 2001 From: Martin Montes Date: Sat, 11 May 2024 19:00:17 +0200 Subject: [PATCH] Install k9s in kubernetes.sh --- k9s.sh | 2 +- kubernetes.sh | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/k9s.sh b/k9s.sh index 99d767d..7063eee 100755 --- a/k9s.sh +++ b/k9s.sh @@ -30,7 +30,7 @@ echo "🐶 Installing k9s..." K9S_CONFIG=${XDG_CONFIG_HOME:="$USER_HOME/.config/k9s"} K9S_CTX=${XDG_DATA_HOME:="$USER_HOME/.local/share/k9s"} echo "Config folder: $K9S_CONFIG" -echo "Contextss folder: $K9S_CTX" +echo "Contexts folder: $K9S_CTX" function cleanup() { if [ -d "$K9S_CONFIG" ]; then diff --git a/kubernetes.sh b/kubernetes.sh index 71ed1e1..f3ca3b3 100755 --- a/kubernetes.sh +++ b/kubernetes.sh @@ -101,4 +101,7 @@ install_bin talosctl $TALOS_URL # yq YQ_VERSION=v4.43.1 YQ_URL=https://github.com/mikefarah/yq/releases/download/$YQ_VERSION/yq_linux_$ARCH -install_bin yq $YQ_URL \ No newline at end of file +install_bin yq $YQ_URL + +# k9s +source <(curl -s https://raw.githubusercontent.com/mmontes11/k8s-scripts/main/k9s.sh) -y \ No newline at end of file