From 2e93004ee723d7b1f51b8966ae3650ab2be6b6d9 Mon Sep 17 00:00:00 2001 From: Chris Kim Date: Wed, 20 May 2020 14:06:16 -0700 Subject: [PATCH] update k3s-root to v0.5.0 and remove k3s specific modifications to k3s-root (as they have moved into k3s-root) Signed-off-by: Chris Kim --- scripts/download | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/scripts/download b/scripts/download index 99e4d88c82..fb924fce49 100755 --- a/scripts/download +++ b/scripts/download @@ -4,18 +4,13 @@ cd $(dirname $0)/.. . ./scripts/version.sh -ROOT_VERSION=v0.4.1 +ROOT_VERSION=v0.5.0 TRAEFIK_VERSION=1.81.0 CHARTS_DIR=build/static/charts mkdir -p ${CHARTS_DIR} curl --compressed -sfL https://github.com/rancher/k3s-root/releases/download/${ROOT_VERSION}/k3s-root-${ARCH}.tar | tar xf - -ln -sf pigz bin/unpigz -for target in iptables iptables-save iptables-restore ip6tables ip6tables-save ip6tables-restore; do - ln -sf xtables-legacy-multi bin/$target -done -mkdir -p bin/aux && rm bin/mount && ln -sf ../busybox bin/aux/mount TRAEFIK_FILE=traefik-${TRAEFIK_VERSION}.tgz curl -sfL https://kubernetes-charts.storage.googleapis.com/${TRAEFIK_FILE} -o ${CHARTS_DIR}/${TRAEFIK_FILE}