Files
the_order/infra/k8s
defiQUG 92cc41d26d Add Legal Office seal and complete Azure CDN deployment
- Add Legal Office of the Master seal (SVG design with Maltese Cross, scales of justice, legal scroll)
- Create legal-office-manifest-template.json for Legal Office credentials
- Update SEAL_MAPPING.md and DESIGN_GUIDE.md with Legal Office seal documentation
- Complete Azure CDN infrastructure deployment:
  - Resource group, storage account, and container created
  - 17 PNG seal files uploaded to Azure Blob Storage
  - All manifest templates updated with Azure URLs
  - Configuration files generated (azure-cdn-config.env)
- Add comprehensive Azure CDN setup scripts and documentation
- Fix manifest URL generation to prevent double slashes
- Verify all seals accessible via HTTPS
2025-11-12 22:03:42 -08:00
..

Kubernetes Configuration

Kubernetes manifests and Helm charts for The Order.

Structure

  • base/ - Base Kubernetes manifests
  • overlays/ - Environment-specific overlays (dev, stage, prod)
  • charts/ - Helm charts (if using Helm)

Usage

Using Kustomize

# Build dev environment
kubectl kustomize overlays/dev

# Apply dev environment
kubectl apply -k overlays/dev

# Build prod environment
kubectl kustomize overlays/prod

# Apply prod environment
kubectl apply -k overlays/prod

Using Helm

# Install chart
helm install the-order charts/the-order -f charts/the-order/values-dev.yaml

# Upgrade chart
helm upgrade the-order charts/the-order -f charts/the-order/values-prod.yaml

Namespaces

  • the-order-dev - Development environment
  • the-order-stage - Staging environment
  • the-order-prod - Production environment

Services

Each service has its own deployment, service, and ingress configuration:

  • Intake service
  • Identity service
  • Finance service
  • Dataroom service
  • Portal applications

Secrets Management

Secrets are managed using:

  • External Secrets Operator
  • SOPS-encrypted secrets
  • Cloud provider secrets managers

Monitoring

  • Prometheus for metrics
  • Grafana for dashboards
  • OpenTelemetry for tracing
  • ELK/OpenSearch for logging