Files
defiQUG 8990270e70 Docs: align Order portal health checks with CT 10090 at 192.168.11.180
Merge Proxmox verification curls with upstream Kubernetes overview; keep HAProxy and public URL probes.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-05-10 23:14:21 -07:00
..

Deployment Documentation

Last Updated: 2025-01-27
Purpose: Complete deployment guide index

Overview

This directory contains comprehensive deployment guides for The Order platform, covering infrastructure setup, service deployment, and operational procedures.

Azure Deployment

Kubernetes Deployment

Infrastructure

Deployment Guides by Scenario

Initial Setup

  1. Azure Environment Setup
  2. Dotenv Configuration
  3. Infrastructure Deployment

Multi-Region Deployment

  1. Sovereignty Landing Zone Deployment
  2. Cloud for Sovereignty Architecture

Service Deployment

  1. Kubernetes Deployment
  2. Service-specific READMEs in services/*/README.md

Integration Setup

  1. Entra VerifiedID
  2. CDN Configuration
  3. Integration Guides

Deployment Workflows

Complete Azure Deployment

# 1. Load environment
source infra/scripts/azure-load-env.sh

# 2. Validate configuration
./infra/scripts/azure-validate-current-env.sh

# 3. Deploy infrastructure
./infra/scripts/azure-deploy.sh

# 4. Deploy sovereignty landing zone
./infra/scripts/deploy-sovereignty-landing-zone.sh

Kubernetes Deployment

# 1. Apply base configuration
kubectl apply -k infra/k8s/base

# 2. Apply environment overlay
kubectl apply -k infra/k8s/overlays/dev

# 3. Verify deployment
kubectl get pods -n the-order

Documentation Structure

deployment/
├── README.md                    # This file
└── azure/                       # Azure-specific guides
    ├── ENVIRONMENT_SETUP.md
    ├── DOTENV_SETUP.md
    ├── SOVEREIGNTY_LANDING_ZONE_DEPLOYMENT.md
    ├── cdn-setup.md
    └── entra-verifiedid.md

Last Updated: 2025-01-27