Compare commits

...

3 commits

Author SHA1 Message Date
edad5dab74 Update docker.io/library/postgres Docker tag to v18
Some checks failed
/ Ansible Lint (pull_request) Failing after 2m42s
/ Ansible Lint (push) Successful in 2m47s
2026-05-19 12:30:55 +00:00
dcd454011f
status(host): add checks for auth-dns
All checks were successful
/ Ansible Lint (push) Successful in 2m21s
2026-05-19 14:27:54 +02:00
55d1279c3e
status(host): add check for diday.org
All checks were successful
/ Ansible Lint (push) Successful in 2m34s
2026-05-19 14:17:07 +02:00
5 changed files with 38 additions and 3 deletions

View file

@ -1,7 +1,7 @@
# renovate: datasource=docker depName=git.hamburg.ccc.de/ccchh/oci-images/nextcloud
nextcloud__version: 32
# renovate: datasource=docker depName=docker.io/library/postgres
nextcloud__postgres_version: 15.17
nextcloud__postgres_version: 18.4
nextcloud__fqdn: cloud.hamburg.ccc.de
nextcloud__data_dir: /data/nextcloud
nextcloud__extra_configuration: "{{ lookup('ansible.builtin.template', 'resources/chaosknoten/cloud/nextcloud/extra_configuration.config.php.j2') }}"

View file

@ -62,7 +62,7 @@ services:
- POSTGRES_DB=mailmandb
- POSTGRES_USER=mailman
- "POSTGRES_PASSWORD={{ secret__lists__postgres_password }}"
image: docker.io/library/postgres:12-alpine
image: docker.io/library/postgres:18-alpine
volumes:
- /opt/mailman/database:/var/lib/postgresql/data
networks:

View file

@ -3,7 +3,7 @@
services:
database:
image: docker.io/library/postgres:15-alpine
image: docker.io/library/postgres:18-alpine
environment:
- "POSTGRES_USER=pretalx"
- "POSTGRES_PASSWORD={{ secret__pretalx_db_password }}"

View file

@ -57,6 +57,33 @@ endpoints:
# apparently TXT records aren't supported yet.
# - "[BODY] == ________________gatus_test_________________"
- name: auth-dns (hamburg.ccc.de)
url: "auth-dns.hamburg.ccc.de"
<<: *services_chaosknoten_defaults
dns:
query-name: "hamburg.ccc.de"
query-type: "A"
conditions:
- "[DNS_RCODE] == NOERROR"
- name: auth-dns (eh22.easterhegg.eu)
url: "auth-dns.hamburg.ccc.de"
<<: *services_chaosknoten_defaults
dns:
query-name: "eh22.easterhegg.eu"
query-type: "A"
conditions:
- "[DNS_RCODE] == NOERROR"
- name: auth-dns (club-assistant.ccchh.net)
url: "auth-dns.hamburg.ccc.de"
<<: *services_chaosknoten_defaults
dns:
query-name: "club-assistant.ccchh.net"
query-type: "AAAA"
conditions:
- "[DNS_RCODE] == NOERROR"
- name: CCCHH ID/Keycloak (main page/account console)
url: "https://id.hamburg.ccc.de/"
<<: *services_chaosknoten_defaults

View file

@ -76,6 +76,14 @@ endpoints:
- "[CERTIFICATE_EXPIRATION] > 48h"
- "[BODY] == pat(*Digitale Selbstverteidigung in Hamburg*)"
- name: diday.org
url: "https://diday.org"
<<: *websites_defaults
conditions:
- "[STATUS] == 200"
- "[CERTIFICATE_EXPIRATION] > 48h"
- "[BODY] == pat(*DIDay*)"
- name: element-admin.hamburg.ccc.de
url: "https://element-admin.hamburg.ccc.de"
<<: *websites_defaults