fix: YAML syntax error in stage verification task

This commit is contained in:
Pieter 2026-01-23 21:36:30 +01:00
parent fb90d77dbc
commit 6af727f665
2 changed files with 8 additions and 7 deletions

View file

@ -9,10 +9,11 @@ client_name: kikker
client_domain: kikker.vrije.cloud
client_secrets_file: kikker.sops.yaml
# Diun configuration - Use Matrix notifications instead of email
diun_matrix_enabled: true
diun_matrix_homeserver_url: "{{ shared_secrets.matrix_homeserver_url }}"
diun_matrix_user: "{{ shared_secrets.matrix_diun_user }}"
diun_matrix_access_token: "{{ shared_secrets.matrix_diun_access_token }}"
diun_matrix_room_id: "{{ shared_secrets.matrix_diun_room_id }}"
# Diun configuration - Use webhook to Matrix instead of email
diun_notif_enabled: true
diun_notif_type: webhook
diun_webhook_endpoint: "https://diun-webhook.postxsociety.cloud"
diun_webhook_method: POST
diun_webhook_headers:
Content-Type: application/json
diun_email_enabled: false

View file

@ -50,7 +50,7 @@
replace: 'image: nextcloud:{{ stage.to }}'
- name: "Stage {{ stage.stage }}: Verify docker-compose.yml was updated"
shell: grep "image: nextcloud:{{ stage.to }}" {{ nextcloud_base_dir }}/docker-compose.yml
shell: grep "image{{ ':' }} nextcloud{{ ':' }}{{ stage.to }}" {{ nextcloud_base_dir }}/docker-compose.yml
register: compose_verify
changed_when: false
failed_when: compose_verify.rc != 0