5 lines
109 B
Bash
5 lines
109 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
export K3S_TOKEN="$1"
|
||
|
|
||
|
curl -sfL https://get.k3s.io | sh -s - agent --server "https://${2}:6443"
|