Some checks failed
CI / lint-and-test (pull_request) Successful in 1m21s
CI / ansible-validation (pull_request) Successful in 9m3s
CI / secret-scanning (pull_request) Successful in 3m19s
CI / dependency-scan (pull_request) Successful in 7m13s
CI / sast-scan (pull_request) Successful in 6m38s
CI / license-check (pull_request) Successful in 1m16s
CI / vault-check (pull_request) Failing after 6m40s
CI / playbook-test (pull_request) Successful in 9m28s
CI / container-scan (pull_request) Successful in 7m59s
CI / sonar-analysis (pull_request) Failing after 1m11s
CI / workflow-summary (pull_request) Successful in 1m11s
- Add roles/pote: Python/venv deployment role with PostgreSQL, cron jobs - Add playbooks/app/: Proxmox app stack provisioning and configuration - Add roles/app_setup: Generic app deployment role (Node.js/systemd) - Add roles/base_os: Base OS hardening role - Enhance roles/proxmox_vm: Split LXC/KVM tasks, improve error handling - Add IP uniqueness validation: Preflight check for duplicate IPs within projects - Add Proxmox-side IP conflict detection: Check existing LXC net0 configs - Update inventories/production/group_vars/all/main.yml: Add pote project config - Add vault.example.yml: Template for POTE secrets (git key, DB, SMTP) - Update .gitignore: Exclude deploy keys, backup files, and other secrets - Update documentation: README, role docs, execution flow guides Security: - All secrets stored in encrypted vault.yml (never committed in plaintext) - Deploy keys excluded via .gitignore - IP conflict guardrails prevent accidental duplicate IP assignments
49 lines
1.6 KiB
INI
49 lines
1.6 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.
|
|
|
|
[gitea]
|
|
giteaVM ansible_host=10.0.30.169 ansible_user=root
|
|
|
|
[portainer]
|
|
portainerVM ansible_host=10.0.30.69 ansible_user=ladmin
|
|
|
|
[homepage]
|
|
homepageVM ansible_host=10.0.30.12 ansible_user=homepage
|
|
|
|
[vaultwarden]
|
|
vaultwardenVM ansible_host=10.0.10.142 ansible_user=ladmin
|
|
|
|
[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
|
|
git-ci-01 ansible_host=10.0.10.223 ansible_user=ladmin
|
|
sonarqube-01 ansible_host=10.0.10.54 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.159 ansible_user=root
|
|
n8n ansible_host=10.0.10.158 ansible_user=root
|
|
|
|
[desktop]
|
|
desktop-beast ansible_host=100.117.34.106 ansible_user=beast
|
|
|
|
[local]
|
|
localhost ansible_connection=local
|