Add provider file for watching images

This commit is contained in:
phil 2023-03-01 13:12:39 +01:00
parent 90cd2786cf
commit 0bbee108d6
3 changed files with 14 additions and 2 deletions

8
templates/images.yaml Normal file
View file

@ -0,0 +1,8 @@
{% if diun_provider_images is defined %}
{% for name in diun_provider_images %}
- name: {{ name.name }}
{% if name.config is defined %}
{{ name.config | indent(2) }}
{% endif %}
{% endfor %}
{% endif %}