From 09376d3cd10347662fedf59393a8dc2d5bf75651 Mon Sep 17 00:00:00 2001 From: Tanguy Herbron Date: Sat, 11 Jun 2022 02:31:46 +0200 Subject: [PATCH] Remove temporary file --- k3s_install_tmp | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 k3s_install_tmp diff --git a/k3s_install_tmp b/k3s_install_tmp deleted file mode 100644 index bcef63a..0000000 --- a/k3s_install_tmp +++ /dev/null @@ -1,22 +0,0 @@ -# MASTER - -## Installation -apt install sudo curl -curl -sfL https://get.k3s.io | sh - -sudo cat /var/lib/rander/k3s/server/node-token - -## Setup -GITHUB_URL=https://github.com/kubernetes/dashboard/releases -VERSION_KUBE_DASHBOARD=$(curl -w '%{url_effective}' -I -L -s -S ${GITHUB_URL}/latest -o /dev/null | sed -e 's|.*/||') -sudo k3s kubectl create -f https://raw.githubusercontent.com/kubernetes/dashboard/${VERSION_KUBE_DASHBOARD}/aio/deploy/recommended.yaml - -sudo k3s kubectl create -f dashboard.admin-user.yml -f dashboard.admin-user-role.yml - -sudo k3s kubectl -n kubernetes-dashboard secret admin-user-token| grep '^token' - -sudo k3s kubectl proxy - -# WORKER - -## Installation -curl -sfL https://get.k3s.io | K3S_URL=https://:6443 K3S_TOKEN= sh -