## Summary This PR adds comprehensive support for deploying the **POTE** application project via Ansible, along with improvements to IP conflict detection and a new app stack provisioning system for Proxmox-managed LXC containers. ## Key Features ### 🆕 New Roles - **`roles/pote`**: Python/venv deployment role for POTE (PostgreSQL, cron jobs, Alembic migrations) - **`roles/app_setup`**: Generic app deployment role (Node.js/systemd) - **`roles/base_os`**: Base OS hardening role ### 🛡️ Safety Improvements - IP uniqueness validation within projects - Proxmox-side IP conflict detection - Enhanced error messages for IP conflicts ### 📦 New Playbooks - `playbooks/app/site.yml`: End-to-end app stack deployment - `playbooks/app/provision_vms.yml`: Proxmox guest provisioning - `playbooks/app/configure_app.yml`: OS + application configuration ## Security - ✅ All secrets stored in encrypted vault.yml - ✅ Deploy keys excluded via .gitignore - ✅ No plaintext secrets committed ## Testing - ✅ POTE successfully deployed to dev/qa/prod environments - ✅ All components validated (Git, PostgreSQL, cron, migrations) Co-authored-by: ilia <ilia@levkin.ca> Reviewed-on: #3
33 lines
841 B
YAML
33 lines
841 B
YAML
---
|
|
# Role: base_os
|
|
# Purpose: baseline OS configuration for app guests (packages, appuser, firewall).
|
|
|
|
base_os_packages:
|
|
- git
|
|
- curl
|
|
- ca-certificates
|
|
- openssh-server
|
|
- sudo
|
|
- ufw
|
|
- python3
|
|
- python3-apt
|
|
- nodejs
|
|
- npm
|
|
|
|
base_os_allow_ssh_port: 22
|
|
|
|
# App ports (override per project)
|
|
base_os_backend_port: "{{ app_backend_port | default(3001) }}"
|
|
base_os_frontend_port: "{{ app_frontend_port | default(3000) }}"
|
|
base_os_enable_backend: true
|
|
base_os_enable_frontend: true
|
|
|
|
base_os_user: "{{ appuser_name | default('appuser') }}"
|
|
base_os_user_shell: "{{ appuser_shell | default('/bin/bash') }}"
|
|
base_os_user_groups: "{{ appuser_groups | default(['sudo']) }}"
|
|
base_os_user_ssh_public_key: "{{ appuser_ssh_public_key | default('') }}"
|
|
|
|
# If true, create passwordless sudo for base_os_user.
|
|
base_os_passwordless_sudo: true
|
|
|