5 lines
96 B
Bash
5 lines
96 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
export K3S_TOKEN="$1"
|
||
|
|
||
|
curl -sfL https://get.k3s.io | sh -s - server --cluster-init
|