- 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
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.
Quick Links
Azure Deployment
- Environment Setup - Azure configuration and setup
- Dotenv Configuration - Using .env file for deployments
- Sovereignty Landing Zone - Multi-region deployment
- CDN Setup - Azure CDN configuration
- Entra VerifiedID - Entra VerifiedID setup
Kubernetes Deployment
- Kubernetes Guide - K8s deployment guide
- Service Manifests - Base Kubernetes manifests
Infrastructure
- Infrastructure Overview - Infrastructure documentation
- Terraform Guide - Terraform documentation
Deployment Guides by Scenario
Initial Setup
Multi-Region Deployment
Service Deployment
- Kubernetes Deployment
- Service-specific READMEs in
services/*/README.md
Integration Setup
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
Related Documentation
- Architecture Documentation
- Infrastructure Documentation
- Service Documentation
- Integration Documentation
Last Updated: 2025-01-27