mirror of
https://github.com/PyratLabs/ansible-role-k3s.git
synced 2024-11-04 09:02:09 +01:00
61 lines
1.7 KiB
Django/Jinja
61 lines
1.7 KiB
Django/Jinja
[Unit]
|
|
Description=Lightweight Kubernetes
|
|
Documentation=https://k3s.io
|
|
{% for requires_unit in k3s_service_requires %}
|
|
Requires={{ requires_unit }}
|
|
{% endfor %}
|
|
Wants=network-online.target
|
|
{% for wants_unit in k3s_service_wants %}
|
|
Wants={{ wants_unit }}
|
|
{% endfor %}
|
|
{% for before_unit in k3s_service_before %}
|
|
Before={{ before_unit }}
|
|
{% endfor %}
|
|
After=network-online.target
|
|
{% for after_unit in k3s_service_after %}
|
|
After={{ after_unit }}
|
|
{% endfor %}
|
|
|
|
[Service]
|
|
Type={{ 'notify' if k3s_control_node else 'exec' }}
|
|
ExecStartPre=-/sbin/modprobe br_netfilter
|
|
ExecStartPre=-/sbin/modprobe overlay
|
|
{% filter regex_replace('\s+', ' ') %}
|
|
{% filter replace('\n', ' ') %}
|
|
ExecStart={{ k3s_install_dir }}/k3s
|
|
{% if k3s_debug is defined and k3s_debug %}
|
|
--debug
|
|
{% endif %}
|
|
{% if k3s_control_node %}
|
|
server
|
|
{% if (k3s_etcd_datastore is defined and k3s_etcd_datastore) and (k3s_primary_control_node is not defined or not k3s_primary_control_node) and k3s_controller_list | length > 1 %}
|
|
--server https://{{ k3s_registration_address }}:{{ k3s_control_plane_port | default(6443) }}
|
|
--token-file {{ k3s_token_location }}
|
|
{% endif %}
|
|
{% if k3s_server is defined %}
|
|
--config {{ k3s_config_file }}
|
|
{% endif %}
|
|
{% else %}
|
|
agent
|
|
--server https://{{ k3s_registration_address }}:{{ k3s_control_plane_port | default(6443) }}
|
|
--token-file {{ k3s_token_location }}
|
|
{% if k3s_agent is defined %}
|
|
--config {{ k3s_config_file }}
|
|
{% endif %}
|
|
{% endif %}
|
|
{% endfilter %}
|
|
{% endfilter %}
|
|
|
|
KillMode=process
|
|
Delegate=yes
|
|
LimitNOFILE=1048576
|
|
LimitNPROC=infinity
|
|
LimitCORE=infinity
|
|
TasksMax=infinity
|
|
TimeoutStartSec=0
|
|
Restart=always
|
|
RestartSec=5s
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|