11 lines
215 B
Bash
11 lines
215 B
Bash
|
|
#!/usr/bin/env sh
|
|
|
|
main() {
|
|
export K3S_URL="https://kubemaster0.lab.cowley.tech:6443"
|
|
export K3S_TOKEN="${k3s_token}"
|
|
export INSTALL_K3S_EXEC="agent"
|
|
curl -sfL https://get.k3s.io | sh -
|
|
return 0
|
|
}
|
|
main
|