This commit captures the infrastructure state immediately following the "Post-Tyranny Tech" workshop on January 23rd, 2026. Infrastructure Status: - 13 client servers deployed (white, valk, zwaan, specht, das, uil, vos, haas, wolf, ree, mees, mus, mol, kikker) - Services: Authentik SSO, Nextcloud, Collabora Office, Traefik - Private network architecture with edge NAT gateway - OIDC integration between Authentik and Nextcloud - Automated recovery flows and invitation system - Container update monitoring with Diun - Uptime monitoring with Uptime Kuma Changes include: - Multiple new client host configurations - Network architecture improvements (private IPs + NAT) - DNS management automation - Container update notifications - Email configuration via Mailgun - SSH key generation for all clients - Encrypted secrets for all deployments - Health check and diagnostic scripts Known Issues to Address: - Nextcloud version pinned to v30 (should use 'latest' or v32) - Zitadel references in templates (migrated to Authentik but templates not updated) - Traefik dynamic config has obsolete static routes 🤖 Generated with Claude Code (https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
58 lines
1.4 KiB
Django/Jinja
58 lines
1.4 KiB
Django/Jinja
---
|
|
# Diun configuration for {{ inventory_hostname }}
|
|
# Documentation: https://crazymax.dev/diun/
|
|
|
|
db:
|
|
path: /data/diun.db
|
|
|
|
watch:
|
|
workers: {{ diun_watch_workers }}
|
|
schedule: "{{ diun_schedule }}"
|
|
firstCheckNotif: {{ diun_first_check_notif | lower }}
|
|
|
|
defaults:
|
|
watchRepo: true
|
|
notifyOn:
|
|
- new
|
|
- update
|
|
|
|
providers:
|
|
docker:
|
|
watchByDefault: {{ diun_watch_all | lower }}
|
|
{% if diun_exclude_containers | length > 0 %}
|
|
excludeContainers:
|
|
{% for container in diun_exclude_containers %}
|
|
- {{ container }}
|
|
{% endfor %}
|
|
{% endif %}
|
|
|
|
notif:
|
|
{% if diun_notif_enabled and diun_notif_type == 'webhook' and diun_webhook_endpoint %}
|
|
webhook:
|
|
endpoint: {{ diun_webhook_endpoint }}
|
|
method: {{ diun_webhook_method }}
|
|
timeout: 10s
|
|
{% if diun_webhook_headers | length > 0 %}
|
|
headers:
|
|
{% for key, value in diun_webhook_headers.items() %}
|
|
{{ key }}: {{ value }}
|
|
{% endfor %}
|
|
{% endif %}
|
|
{% endif %}
|
|
|
|
{% if diun_slack_webhook_url %}
|
|
slack:
|
|
webhookURL: {{ diun_slack_webhook_url }}
|
|
{% endif %}
|
|
|
|
{% if diun_email_enabled and diun_smtp_username_final is defined and diun_smtp_password_final is defined and diun_smtp_password_final != '' %}
|
|
mail:
|
|
host: {{ diun_smtp_host }}
|
|
port: {{ diun_smtp_port }}
|
|
ssl: false
|
|
insecureSkipVerify: false
|
|
username: {{ diun_smtp_username_final }}
|
|
password: {{ diun_smtp_password_final }}
|
|
from: {{ diun_smtp_from }}
|
|
to: {{ diun_smtp_to }}
|
|
{% endif %}
|