mirror of
https://github.com/k3s-io/k3s-ansible.git
synced 2025-12-25 00:12:37 +01:00
Fix K3s Path, Alternative folder in HA (#233)
* Readd #143 fix Signed-off-by: Derek Nola <derek.nola@suse.com> * Add PR template Signed-off-by: Derek Nola <derek.nola@suse.com>
This commit is contained in:
@@ -59,12 +59,19 @@
|
||||
validate: 'visudo -cf %s'
|
||||
when: ansible_distribution in ['CentOS', 'Red Hat Enterprise Linux','RedHat']
|
||||
|
||||
- name: Create symlink
|
||||
ansible.builtin.file:
|
||||
dest: /var/lib/rancher/k3s
|
||||
src: "{{ k3s_server_location }}"
|
||||
force: true
|
||||
state: link
|
||||
- name: Setup alternative K3s directory
|
||||
when:
|
||||
- k3s_server_location is defined
|
||||
- k3s_server_location != "/var/lib/rancher/k3s"
|
||||
block:
|
||||
- name: Make rancher directory
|
||||
ansible.builtin.file:
|
||||
path: "/var/lib/rancher"
|
||||
mode: 0755
|
||||
state: directory
|
||||
- name: Create symlink
|
||||
ansible.builtin.file:
|
||||
dest: /var/lib/rancher/k3s
|
||||
src: "{{ k3s_server_location }}"
|
||||
force: true
|
||||
state: link
|
||||
|
||||
Reference in New Issue
Block a user