## 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
47 lines
1.7 KiB
INI
47 lines
1.7 KiB
INI
# Ansible Inventory
|
|
# Primary IPs: Tailscale (100.x.x.x) for remote access
|
|
# Fallback IPs: Local network (10.0.x.x) when Tailscale is down
|
|
# Usage: ansible_host_fallback is available for manual fallback
|
|
#
|
|
# NOTE: Proxmox app projects (dev/qa/prod) are provisioned dynamically via
|
|
# `playbooks/app/site.yml` (it uses `add_host` based on `app_projects`).
|
|
# You generally do NOT need to add project hosts here.
|
|
|
|
[dev]
|
|
dev01 ansible_host=10.0.30.105 ansible_user=ladmin
|
|
bottom ansible_host=10.0.10.156 ansible_user=beast
|
|
debianDesktopVM ansible_host=10.0.10.206 ansible_user=user skip_reboot=true
|
|
devGPU ansible_host=10.0.30.63 ansible_user=root
|
|
|
|
[qa]
|
|
git-ci-01 ansible_host=10.0.10.223 ansible_user=ladmin
|
|
sonarqube-01 ansible_host=10.0.10.54 ansible_user=ladmin
|
|
dev02 ansible_host=10.0.10.100 ansible_user=ladmin
|
|
KrakenMint ansible_host=10.0.10.120 ansible_user=ladmin
|
|
|
|
[ansible]
|
|
ansibleVM ansible_host=10.0.10.157 ansible_user=master
|
|
|
|
[tailscale]
|
|
tailscaleVM ansible_host=100.66.218.53 ansible_user=ladmin
|
|
|
|
[services]
|
|
caddy ansible_host=10.0.10.50 ansible_user=root
|
|
jellyfin ansible_host=10.0.10.232 ansible_user=root
|
|
listmonk ansible_host=10.0.10.149 ansible_user=root
|
|
nextcloud ansible_host=10.0.10.25 ansible_user=root
|
|
actual ansible_host=10.0.10.158 ansible_user=root
|
|
vikanjans ansible_host=10.0.10.159 ansible_user=root
|
|
n8n ansible_host=10.0.10.158 ansible_user=root
|
|
giteaVM ansible_host=10.0.30.169 ansible_user=root
|
|
portainerVM ansible_host=10.0.30.69 ansible_user=ladmin
|
|
homepageVM ansible_host=10.0.30.12 ansible_user=homepage
|
|
vaultwardenVM ansible_host=10.0.10.142 ansible_user=ladmin
|
|
qBittorrent ansible_host=10.0.10.91 ansible_user=root port=8080
|
|
|
|
[desktop]
|
|
desktop-beast ansible_host=100.117.34.106 ansible_user=beast
|
|
|
|
[local]
|
|
localhost ansible_connection=local
|