Files
loc_az_hci/diagrams/deployment-flow.mmd
defiQUG c39465c2bd
Some checks failed
Test / test (push) Has been cancelled
Initial commit: loc_az_hci (smom-dbis-138 excluded via .gitignore)
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-08 09:04:46 -08:00

64 lines
2.0 KiB
Plaintext

flowchart TD
Start([Start Deployment]) --> Phase1[Phase 1: Proxmox Cluster]
Phase1 --> P1_1[Configure Network]
P1_1 --> P1_2[Update Repos]
P1_2 --> P1_3[Setup NFS Storage]
P1_3 --> P1_4[Create Cluster]
P1_4 --> P1_5{Cluster<br/>Created?}
P1_5 -->|No| P1_1
P1_5 -->|Yes| Phase2[Phase 2: Azure Arc]
Phase2 --> P2_1[Prepare Azure]
P2_1 --> P2_2[Onboard Proxmox Hosts]
P2_2 --> P2_3[Create VMs]
P2_3 --> P2_4[Onboard VMs]
P2_4 --> P2_5{Arc<br/>Connected?}
P2_5 -->|No| P2_2
P2_5 -->|Yes| Phase3[Phase 3: Kubernetes]
Phase3 --> P3_1[Install K3s]
P3_1 --> P3_2[Onboard to Arc]
P3_2 --> P3_3[Install Base Infra]
P3_3 --> P3_4{K8s<br/>Ready?}
P3_4 -->|No| P3_1
P3_4 -->|Yes| Phase4[Phase 4: Git/DevOps]
Phase4 --> P4_1{Choose Git<br/>Solution}
P4_1 -->|Gitea| P4_2[Deploy Gitea]
P4_1 -->|GitLab| P4_3[Deploy GitLab]
P4_1 -->|Azure DevOps| P4_4[Setup Agents]
P4_2 --> P4_5[Configure GitOps]
P4_3 --> P4_5
P4_4 --> P4_5
P4_5 --> Phase5[Phase 5: HC Stack]
Phase5 --> P5_1[Deploy via GitOps]
P5_1 --> P5_2[Deploy Besu]
P5_2 --> P5_3[Deploy Firefly]
P5_3 --> P5_4[Deploy Chainlink]
P5_4 --> P5_5[Deploy Blockscout]
P5_5 --> P5_6[Deploy Cacti]
P5_6 --> P5_7[Deploy NGINX]
P5_7 --> P5_8{All Apps<br/>Deployed?}
P5_8 -->|No| P5_1
P5_8 -->|Yes| Phase6[Phase 6: Verify]
Phase6 --> P6_1[Check Proxmox]
P6_1 --> P6_2[Check Azure Arc]
P6_2 --> P6_3[Check Kubernetes]
P6_3 --> P6_4[Check Applications]
P6_4 --> P6_5{All<br/>Verified?}
P6_5 -->|No| Phase6
P6_5 -->|Yes| End([Deployment Complete])
style Start fill:#4caf50,color:#fff
style End fill:#4caf50,color:#fff
style Phase1 fill:#2196f3,color:#fff
style Phase2 fill:#2196f3,color:#fff
style Phase3 fill:#2196f3,color:#fff
style Phase4 fill:#2196f3,color:#fff
style Phase5 fill:#2196f3,color:#fff
style Phase6 fill:#2196f3,color:#fff