terraform/10-pre-k8s/files/k3s-install.sh
2024-08-04 16:16:53 +02:00

9 lines
197 B
Bash

#!/usr/bin/env sh
main() {
export K3S_KUBECONFIG_MODE="644"
#export INSTALL_K3S_EXEC=" --disable servicelb --disable traefik"
curl -sfL https://get.k3s.io | sh -
return 0
}
main