Skip to main content

infra-kubernetes

Production manifests, Helm charts, Flux CD GitOps, and environment overlays.
CategoryInfrastructure
StackKubernetes, Helm, Kustomize, Flux CD
StatusScaffolding

Overview

Production deployment configuration for the devarno.cloud platform. Provides Kubernetes manifests, Helm charts, Kustomize overlays for multiple environments, and Flux CD GitOps configuration.

Dependencies

Consumes Docker images from all service repositories.

Structure

base/               # Base Kustomize resources
overlays/
├── dev/            # Development environment overlay
├── staging/        # Staging environment overlay
└── prod/           # Production environment overlay
helm/               # Helm charts
flux/               # Flux CD GitOps config

Development

# Preview manifests
kustomize build overlays/dev

# Deploy to dev
kubectl apply -k overlays/dev

# Helm install
helm install devarno-cloud helm/ -f helm/values-dev.yaml

Architecture

Part of the devarno.cloud platform. See .github for overview.