infra/playbooks/web.yml
Jeremie Fraeys 4842c71cae
Add new playbooks and update inventory configuration
- Add deploy-app.yml playbook for application-specific deployments
- Add web.yml playbook for web infrastructure management
- Restructure tests/test_config.yml for better organization
- Update inventory/group_vars/all.yml with new hostnames and settings
2026-02-21 18:31:20 -05:00

18 lines
504 B
YAML

---
- hosts: web_hosts
become: true
pre_tasks:
- name: Load vault vars if present
include_vars:
file: "{{ playbook_dir }}/../secrets/vault.yml"
when: (lookup('ansible.builtin.fileglob', playbook_dir ~ '/../secrets/vault.yml', wantlist=True) | length) > 0
tags: [vault]
roles:
- role: docker
tags: [docker]
- role: app_deployer
tags: [app_deployer]
- role: app_core
tags: [app_core]
- role: forgejo_runner
tags: [forgejo_runner]