Files
defiQUG 6a8582e54d feat: comprehensive project structure improvements and Cloud for Sovereignty landing zone
- Add Cloud for Sovereignty landing zone architecture and deployment
- Implement complete legal document management system
- Reorganize documentation with improved navigation
- Add infrastructure improvements (Dockerfiles, K8s, monitoring)
- Add operational improvements (graceful shutdown, rate limiting, caching)
- Create comprehensive project structure documentation
- Add Azure deployment automation scripts
- Improve repository navigation and organization
2025-11-13 09:32:55 -08: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