2026-01-20 19:05:51 +01:00
|
|
|
---
|
|
|
|
|
# Diun default configuration
|
|
|
|
|
diun_version: "latest"
|
2026-01-24 12:44:54 +01:00
|
|
|
diun_schedule: "0 6 * * *" # Daily at 6am UTC
|
2026-01-20 19:05:51 +01:00
|
|
|
diun_log_level: "info"
|
|
|
|
|
diun_watch_workers: 10
|
|
|
|
|
|
|
|
|
|
# Notification configuration
|
|
|
|
|
diun_notif_enabled: true
|
|
|
|
|
diun_notif_type: "webhook" # Options: webhook, slack, discord, email, gotify
|
|
|
|
|
diun_webhook_endpoint: "" # Set per environment or via secrets
|
|
|
|
|
diun_webhook_method: "POST"
|
|
|
|
|
diun_webhook_headers: {}
|
|
|
|
|
|
|
|
|
|
# Optional: Slack notification
|
|
|
|
|
diun_slack_webhook_url: ""
|
|
|
|
|
|
|
|
|
|
# Optional: Email notification (Mailgun)
|
|
|
|
|
# Note: Uses per-client SMTP credentials from mailgun role
|
|
|
|
|
diun_email_enabled: true
|
|
|
|
|
diun_smtp_host: "smtp.eu.mailgun.org"
|
|
|
|
|
diun_smtp_port: 587
|
|
|
|
|
diun_smtp_from: "{{ client_name }}@mg.vrije.cloud"
|
|
|
|
|
diun_smtp_to: "pieter@postxsociety.org"
|
|
|
|
|
|
|
|
|
|
# Which containers to watch
|
|
|
|
|
diun_watch_all: true
|
|
|
|
|
diun_exclude_containers: []
|
chore: Post-workshop state - January 23rd, 2026
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>
2026-01-23 20:36:31 +01:00
|
|
|
|
2026-01-24 12:44:54 +01:00
|
|
|
# Don't send notifications on first check (prevents spam on initial run)
|
chore: Post-workshop state - January 23rd, 2026
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>
2026-01-23 20:36:31 +01:00
|
|
|
diun_first_check_notif: false
|
2026-01-23 21:13:49 +01:00
|
|
|
|
|
|
|
|
# Optional: Matrix notification
|
|
|
|
|
diun_matrix_enabled: false
|
|
|
|
|
diun_matrix_homeserver_url: "" # e.g., https://matrix.postxsociety.cloud
|
|
|
|
|
diun_matrix_user: "" # e.g., @diun:matrix.postxsociety.cloud
|
|
|
|
|
diun_matrix_password: "" # Bot user password (if using password auth)
|
|
|
|
|
diun_matrix_access_token: "" # Bot access token (preferred over password)
|
|
|
|
|
diun_matrix_room_id: "" # e.g., !abc123:matrix.postxsociety.cloud
|