k3s/scripts/download

24 lines
705 B
Plaintext
Raw Normal View History

#!/bin/bash
cd $(dirname $0)/..
2019-11-12 23:36:04 +00:00
. ./scripts/version.sh
2020-05-04 16:18:35 +00:00
ROOT_VERSION=v0.4.1
TRAEFIK_VERSION=1.81.0
CHARTS_DIR=build/static/charts
mkdir -p ${CHARTS_DIR}
2019-09-20 00:17:56 +00:00
curl --compressed -sfL https://github.com/rancher/k3s-root/releases/download/${ROOT_VERSION}/k3s-root-${ARCH}.tar | tar xf -
2019-01-31 23:57:50 +00:00
ln -sf pigz bin/unpigz
2019-11-04 18:35:14 +00:00
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}
2019-09-03 23:41:54 +00:00
cp scripts/wg-add.sh bin/aux/