20 lines
479 B
SYSTEMD
20 lines
479 B
SYSTEMD
![]() |
[Unit]
|
||
|
Description=Run K3s script
|
||
|
Wants = network-online.target
|
||
|
After = network-online.target
|
||
|
ConditionPathExists=/etc/rancher/k3s/config.yaml
|
||
|
ConditionPathExists=/opt/k3s-agent-install.sh
|
||
|
ConditionPathExists=!/opt/bin/k3s
|
||
|
|
||
|
[Service]
|
||
|
Type=forking
|
||
|
TimeoutStartSec=0
|
||
|
RemainAfterExit=yes
|
||
|
KillMode=process
|
||
|
Environment="K3S_TOKEN=secret_edgecluster_token"
|
||
|
Environment="INSTALL_K3S_EXEC=agent"
|
||
|
ExecStart=/usr/bin/sh -c "/opt/k3s-agent-install.sh"
|
||
|
|
||
|
[Install]
|
||
|
WantedBy=multi-user.target
|