- Enable sigvild-gallery role in site.yml playbook - Add backup configuration to host variables - Integrate restore functionality into main sigvild-gallery tasks - Add data protection logic to prevent accidental overwrites - Enable gitea role for complete service deployment This completes the sigvild-gallery service integration with backup/restore capabilities.
28 lines
782 B
YAML
28 lines
782 B
YAML
---
|
|
# Security hardening establishes secure foundation before web services
|
|
# - import_playbook: playbooks/security.yml
|
|
|
|
- name: Deploy Core Infrastructure
|
|
hosts: arch-vps
|
|
become: true
|
|
gather_facts: true
|
|
|
|
roles:
|
|
# Infrastructure services
|
|
# - role: postgresql
|
|
# tags: ['postgresql', 'infrastructure', 'database']
|
|
# - role: valkey
|
|
# tags: ['valkey', 'redis', 'infrastructure', 'cache']
|
|
# - role: podman
|
|
# tags: ['podman', 'containers', 'infrastructure']
|
|
# - role: caddy
|
|
# tags: ['caddy', 'infrastructure', 'web']
|
|
|
|
# Application services
|
|
- role: sigvild-gallery
|
|
tags: ['sigvild', 'gallery', 'wedding']
|
|
- role: authentik
|
|
tags: ['authentik']
|
|
- role: gitea
|
|
tags: ['gitea', 'git', 'development']
|