initial commit
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
commit
75891c3271
129 changed files with 8046 additions and 0 deletions
30
roles/diun/templates/diun.yml.j2
Normal file
30
roles/diun/templates/diun.yml.j2
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
watch:
|
||||
schedule: "{{ diun_schedule | default('0 */6 * * *') }}"
|
||||
firstCheckNotif: false
|
||||
|
||||
providers:
|
||||
docker:
|
||||
watchByDefault: true
|
||||
watchStopped: false
|
||||
|
||||
{% if diun_notify_email | default(false) or diun_notify_matrix | default(false) %}
|
||||
notif:
|
||||
{% if diun_notify_email | default(false) %}
|
||||
mail:
|
||||
host: {{ mail_hostname }}
|
||||
port: 587
|
||||
ssl: false
|
||||
insecureSkipVerify: false
|
||||
username: {{ diun_email_user }}
|
||||
password: {{ diun_email_password }}
|
||||
from: {{ diun_email_user }}
|
||||
to: {{ diun_email_to }}
|
||||
{% endif %}
|
||||
{% if diun_notify_matrix | default(false) %}
|
||||
matrix:
|
||||
homeserverURL: https://{{ tuwunel_domain }}
|
||||
user: {{ diun_matrix_user }}
|
||||
password: {{ diun_matrix_password }}
|
||||
roomID: {{ diun_matrix_room_id }}
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
Loading…
Add table
Add a link
Reference in a new issue