Fix service and conditional
This commit is contained in:
parent
0d43d07ad4
commit
dadd077723
@ -7,6 +7,7 @@
|
|||||||
delay: 10
|
delay: 10
|
||||||
|
|
||||||
- name: Restart when config changed, but install already done
|
- name: Restart when config changed, but install already done
|
||||||
service: k3s
|
service:
|
||||||
status: restarted
|
name: k3s
|
||||||
when: "inventory_hostname != groups['kubernetes'][0] && !command.changed && config.changed"
|
status: restarted
|
||||||
|
when: "inventory_hostname != groups['kubernetes'][0] and not command.changed and config.changed"
|
||||||
|
@ -5,9 +5,10 @@
|
|||||||
changed_when: "'No change detected' in command.stdout"
|
changed_when: "'No change detected' in command.stdout"
|
||||||
|
|
||||||
- name: Restart when config changed, but install already done
|
- name: Restart when config changed, but install already done
|
||||||
service: k3s
|
service:
|
||||||
status: restarted
|
name: k3s
|
||||||
when: "inventory_hostname == groups['kubernetes'][0] && !command.changed && config.changed"
|
status: restarted
|
||||||
|
when: "inventory_hostname == groups['kubernetes'][0] and not command.changed and config.changed"
|
||||||
|
|
||||||
- name: Waiting for K3s-server to accept connections
|
- name: Waiting for K3s-server to accept connections
|
||||||
ansible.builtin.wait_for:
|
ansible.builtin.wait_for:
|
||||||
@ -26,9 +27,10 @@
|
|||||||
delay: 10
|
delay: 10
|
||||||
|
|
||||||
- name: Restart when config changed, but install already done
|
- name: Restart when config changed, but install already done
|
||||||
service: k3s
|
service:
|
||||||
status: restarted
|
name: k3s
|
||||||
when: "inventory_hostname != groups['kubernetes'][0] && !command.changed && config.changed"
|
status: restarted
|
||||||
|
when: "inventory_hostname != groups['kubernetes'][0] and not command.changed and config.changed"
|
||||||
|
|
||||||
- name: Waiting for K3s-server to accept connections on other nodes
|
- name: Waiting for K3s-server to accept connections on other nodes
|
||||||
ansible.builtin.wait_for:
|
ansible.builtin.wait_for:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user