Initial Phoenix Sankofa Cloud setup

- Complete project structure with Next.js frontend
- GraphQL API backend with Apollo Server
- Portal application with NextAuth
- Crossplane Proxmox provider
- GitOps configurations
- CI/CD pipelines
- Testing infrastructure (Vitest, Jest, Go tests)
- Error handling and monitoring
- Security hardening
- UI component library
- Documentation
This commit is contained in:
defiQUG
2025-11-28 12:54:33 -08:00
commit 6f28146ac3
229 changed files with 43136 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
# Ansible Inventory Example
# Copy to inventory and customize with your hosts
[proxmox_site_1]
pve1 ansible_host=10.1.0.10 site=us-east-1
pve2 ansible_host=10.1.0.11 site=us-east-1
pve3 ansible_host=10.1.0.12 site=us-east-1
[proxmox_site_2]
pve4 ansible_host=10.2.0.10 site=eu-west-1
pve5 ansible_host=10.2.0.11 site=eu-west-1
pve6 ansible_host=10.2.0.12 site=eu-west-1
[proxmox_site_3]
pve7 ansible_host=10.3.0.10 site=apac-1
pve8 ansible_host=10.3.0.11 site=apac-1
[proxmox:children]
proxmox_site_1
proxmox_site_2
proxmox_site_3
[proxmox:vars]
ansible_user=root
ansible_ssh_common_args='-o StrictHostKeyChecking=no'