mirror of
https://github.com/kubernetes-sigs/kubespray.git
synced 2025-12-15 22:34:21 +03:00
* project: fix ansible-lint name Signed-off-by: Arthur Outhenin-Chalandre <arthur.outhenin-chalandre@proton.ch> * project: ignore jinja template error in names Signed-off-by: Arthur Outhenin-Chalandre <arthur.outhenin-chalandre@proton.ch> * project: capitalize ansible name Signed-off-by: Arthur Outhenin-Chalandre <arthur.outhenin-chalandre@proton.ch> * project: update notify after name capitalization Signed-off-by: Arthur Outhenin-Chalandre <arthur.outhenin-chalandre@proton.ch> --------- Signed-off-by: Arthur Outhenin-Chalandre <arthur.outhenin-chalandre@proton.ch>
17 lines
271 B
YAML
17 lines
271 B
YAML
---
|
|
- name: Restart crio
|
|
command: /bin/true
|
|
notify:
|
|
- CRI-O | reload systemd
|
|
- CRI-O | reload crio
|
|
|
|
- name: CRI-O | reload systemd
|
|
systemd:
|
|
daemon_reload: true
|
|
|
|
- name: CRI-O | reload crio
|
|
service:
|
|
name: crio
|
|
state: restarted
|
|
enabled: yes
|