| 123456789101112131415161718192021222324252627282930313233 |
- [Unit]
- Description=Lightweight Kubernetes
- Documentation=https://k3s.io
- Wants=network-online.target
- After=network-online.target
- [Install]
- WantedBy=multi-user.target
- [Service]
- Type=notify
- EnvironmentFile=-/etc/default/%N
- EnvironmentFile=-/etc/sysconfig/%N
- EnvironmentFile=-/etc/systemd/system/k3s-agent.service.env
- KillMode=process
- Delegate=yes
- # Having non-zero Limit*s causes performance problems due to accounting overhead
- # in the kernel. We recommend using cgroups to do container-local accounting.
- LimitNOFILE=1048576
- LimitNPROC=infinity
- LimitCORE=infinity
- TasksMax=infinity
- TimeoutStartSec=0
- Restart=always
- RestartSec=5s
- ExecStartPre=/bin/sh -xc '! /usr/bin/systemctl is-enabled --quiet nm-cloud-setup.service'
- ExecStartPre=-/sbin/modprobe br_netfilter
- ExecStartPre=-/sbin/modprobe overlay
- {% if ip_type == 'ipv6' and api_endpoint | regex_search(':') %}
- ExecStart=/usr/local/bin/k3s agent --data-dir {{ k3s_server_location }} --server https://[{{ api_endpoint }}]:{{ api_port }} --token {{ token }} {{ extra_agent_args | default('') }}
- {% else %}
- ExecStart=/usr/local/bin/k3s agent --data-dir {{ k3s_server_location }} --server https://{{ api_endpoint }}:{{ api_port }} --token {{ token }} {{ extra_agent_args | default('') }}
- {% endif %}
|