mirror of
https://github.com/PyratLabs/ansible-role-k3s
synced 2024-11-05 13:23:30 +01:00
Potential fix for #35
This commit is contained in:
parent
504b84a8b6
commit
d2a34546cf
1 changed files with 6 additions and 4 deletions
|
@ -1,10 +1,11 @@
|
|||
---
|
||||
|
||||
- name: Ensure k3s is symlinked into the installation destination on the contol plane
|
||||
- name: Ensure k3s is hard linked into the installation destination on the contol plane
|
||||
file:
|
||||
src: "{{ k3s_install_dir }}/k3s-{{ k3s_release_version }}"
|
||||
dest: "{{ k3s_install_dir }}/k3s"
|
||||
state: link
|
||||
state: hard
|
||||
force: true
|
||||
when: (k3s_control_node and k3s_controller_count | length == 1)
|
||||
or (k3s_primary_control_node and k3s_controller_count | length > 1)
|
||||
notify:
|
||||
|
@ -44,11 +45,12 @@
|
|||
mode: 0700
|
||||
become: "{{ k3s_become_for_usr_local_bin | ternary(true, false, k3s_become_for_all) }}"
|
||||
|
||||
- name: Ensure k3s is symlinked into the installation destinations across all nodes
|
||||
- name: Ensure k3s is hard linked into the installation destinations across all nodes
|
||||
file:
|
||||
src: "{{ k3s_install_dir }}/k3s-{{ k3s_release_version }}"
|
||||
dest: "{{ k3s_install_dir }}/{{ item }}"
|
||||
state: link
|
||||
state: hard
|
||||
force: true
|
||||
notify:
|
||||
- restart k3s
|
||||
loop:
|
||||
|
|
Loading…
Reference in a new issue