mirror of
https://github.com/PyratLabs/ansible-role-k3s.git
synced 2024-11-01 08:38:50 +01:00
478 B
478 B
systemd config
Below are examples to tweak how and when K3S starts up.
Wanted service units
In this example, we're going to start K3S after Wireguard. Our example server
has a Wireguard connection wg0
. We are using "wants" rather than "requires"
as it's a weaker requirement that Wireguard must be running. We then want
K3S to start after Wireguard has started.
---
k3s_service_wants:
- wg-quick@wg0.service
k3s_service_after:
- wg-quick@wg0.service