mirror of
https://github.com/PyratLabs/ansible-role-k3s.git
synced 2024-11-10 10:01:52 +01:00
12 lines
252 B
YAML
12 lines
252 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 }}"
|