2019-03-09 21:54:44 +01:00
|
|
|
---
|
|
|
|
|
|
|
|
- name: Ensure NODE_TOKEN is captured from control node
|
2020-12-12 15:27:59 +01:00
|
|
|
ansible.builtin.slurp:
|
2020-12-05 22:56:28 +01:00
|
|
|
path: "{{ k3s_runtime_config['data-dir'] | default ('/var/lib/rancher/k3s') }}/server/node-token"
|
2019-12-04 18:17:15 +01:00
|
|
|
register: k3s_slurped_control_token
|
2019-03-09 21:54:44 +01:00
|
|
|
delegate_to: "{{ k3s_control_delegate }}"
|
2020-07-25 18:39:01 +02:00
|
|
|
when: k3s_control_token is not defined and not ansible_check_mode
|
2020-05-20 19:50:58 +02:00
|
|
|
become: "{{ k3s_become_for_kubectl | ternary(true, false, k3s_become_for_all) }}"
|
2019-12-04 18:17:15 +01:00
|
|
|
|
|
|
|
- name: Ensure NODE_TOKEN is formatted correctly for use in templates
|
|
|
|
set_fact:
|
|
|
|
k3s_control_token: "{{ k3s_slurped_control_token.content | b64decode }}"
|
2020-07-25 18:39:01 +02:00
|
|
|
when: k3s_control_token is not defined and not ansible_check_mode
|
|
|
|
|
|
|
|
- name: Ensure dummy NODE_TOKEN is defined for ansible_check_mode
|
|
|
|
set_fact:
|
|
|
|
k3s_control_token: "{{ k3s_control_delegate | to_uuid }}"
|
|
|
|
check_mode: false
|
|
|
|
when: k3s_control_token is not defined and ansible_check_mode
|
2019-03-09 21:54:44 +01:00
|
|
|
|
2020-09-21 20:38:51 +02:00
|
|
|
- name: Ensure the cluster NODE_TOKEN file location exists
|
2020-12-12 15:27:59 +01:00
|
|
|
ansible.builtin.file:
|
2020-12-05 22:56:28 +01:00
|
|
|
path: "{{ k3s_token_location | dirname }}"
|
2020-09-21 20:38:51 +02:00
|
|
|
state: directory
|
|
|
|
mode: 0755
|
|
|
|
become: "{{ k3s_become_for_systemd | ternary(true, false, k3s_become_for_all) }}"
|
|
|
|
|
|
|
|
- name: Ensure k3s cluster token file is present on workers and secondary control nodes
|
2020-12-12 15:27:59 +01:00
|
|
|
ansible.builtin.template:
|
2020-09-21 20:38:51 +02:00
|
|
|
src: cluster-token.j2
|
2020-12-05 22:56:28 +01:00
|
|
|
dest: "{{ k3s_token_location }}"
|
2020-09-21 20:38:51 +02:00
|
|
|
mode: 0600
|
2020-10-19 21:26:12 +02:00
|
|
|
become: "{{ k3s_become_for_install_dir | ternary(true, false, k3s_become_for_all) }}"
|
2020-09-21 20:38:51 +02:00
|
|
|
when: (k3s_control_node and not k3s_primary_control_node)
|
|
|
|
or not k3s_control_node
|
|
|
|
notify:
|
|
|
|
- restart k3s
|
|
|
|
|
2019-03-09 21:54:44 +01:00
|
|
|
- name: Ensure k3s service unit file is present
|
2020-12-12 15:27:59 +01:00
|
|
|
ansible.builtin.template:
|
2019-03-09 21:54:44 +01:00
|
|
|
src: k3s.service.j2
|
2020-12-05 22:56:28 +01:00
|
|
|
dest: "{{ k3s_systemd_unit_dir }}/k3s.service"
|
2020-09-15 19:10:25 +02:00
|
|
|
mode: 0644
|
2020-05-09 20:53:25 +02:00
|
|
|
become: "{{ k3s_become_for_systemd | ternary(true, false, k3s_become_for_all) }}"
|
2019-03-09 21:54:44 +01:00
|
|
|
notify:
|
2019-10-01 22:31:35 +02:00
|
|
|
- reload systemd
|
2019-03-09 21:54:44 +01:00
|
|
|
- restart k3s
|
|
|
|
|
2020-10-22 20:26:15 +02:00
|
|
|
- name: Ensure k3s config file exists
|
2020-12-12 15:27:59 +01:00
|
|
|
ansible.builtin.template:
|
2020-10-19 21:26:12 +02:00
|
|
|
src: config.yaml.j2
|
|
|
|
dest: "{{ k3s_config_file }}"
|
|
|
|
mode: 0644
|
|
|
|
notify:
|
|
|
|
- reload systemd
|
|
|
|
- restart k3s
|
|
|
|
become: "{{ k3s_become_for_install_dir | ternary(true, false, k3s_become_for_all) }}"
|
|
|
|
|
2020-11-10 20:01:05 +01:00
|
|
|
- name: Ensure secondary controllers are started
|
2020-12-12 15:27:59 +01:00
|
|
|
ansible.builtin.systemd:
|
2020-01-13 22:32:31 +01:00
|
|
|
name: k3s
|
|
|
|
state: started
|
|
|
|
enabled: true
|
2020-11-10 20:01:05 +01:00
|
|
|
register: ensure_secondary_controllers_started
|
|
|
|
until: ensure_secondary_controllers_started is succeeded
|
2020-03-07 17:15:41 +01:00
|
|
|
retries: "{{ play_hosts | length }}"
|
2020-09-18 13:09:56 +02:00
|
|
|
delay: 5
|
2020-01-13 22:32:31 +01:00
|
|
|
when: k3s_control_node and not k3s_primary_control_node
|
2020-05-30 23:40:05 +02:00
|
|
|
become: "{{ k3s_become_for_systemd | ternary(true, false, k3s_become_for_all) }}"
|
2019-03-09 21:54:44 +01:00
|
|
|
|
2020-10-17 19:26:30 +02:00
|
|
|
- import_tasks: ../validate/check-control-plane.yml
|
|
|
|
when: not k3s_skip_validation
|
2019-10-01 22:31:35 +02:00
|
|
|
|
2020-01-13 22:32:31 +01:00
|
|
|
- meta: flush_handlers
|
|
|
|
|
2020-10-17 19:26:30 +02:00
|
|
|
- import_tasks: ../validate/check-cluster-nodes-ready.yml
|
|
|
|
when: not k3s_skip_validation
|