khuedoan-homelab/metal/roles/k3s/templates/config.yaml.j2

10 lines
283 B
Plaintext
Raw Normal View History

2021-09-01 05:35:35 +07:00
{% if inventory_hostname == groups['masters'][0] %}
cluster-init: true
{% else %}
server: https://{{ hostvars[groups['masters'][0]].ansible_host }}:6443
{% endif %}
token-file: {{ k3s_token_file }}
{% if 'masters' in group_names %}
{{ k3s_server_config | to_nice_yaml }}
{% endif %}