mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
2e93004ee7
Signed-off-by: Chris Kim <oats87g@gmail.com>
19 lines
466 B
Bash
Executable File
19 lines
466 B
Bash
Executable File
#!/bin/bash
|
|
|
|
cd $(dirname $0)/..
|
|
|
|
. ./scripts/version.sh
|
|
|
|
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 -
|
|
|
|
TRAEFIK_FILE=traefik-${TRAEFIK_VERSION}.tgz
|
|
curl -sfL https://kubernetes-charts.storage.googleapis.com/${TRAEFIK_FILE} -o ${CHARTS_DIR}/${TRAEFIK_FILE}
|
|
|
|
cp scripts/wg-add.sh bin/aux/
|