mirror of
https://github.com/PyratLabs/ansible-role-k3s.git
synced 2024-11-22 11:48:22 +01:00
d563dcca05
change code style
12 lines
311 B
YAML
12 lines
311 B
YAML
---
|
|
|
|
- name: Ensure containerd registries file exists
|
|
ansible.builtin.template:
|
|
src: registries.yaml.j2
|
|
dest: "{{ k3s_config_dir }}/registries.yaml"
|
|
mode: 0600
|
|
notify:
|
|
- reload systemd
|
|
- restart k3s
|
|
become: "{{ k3s_become_for_install_dir | ternary(true, false, k3s_become_for_all) }}"
|