Documentation Index
Fetch the complete documentation index at: https://dorguai.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Synopsis
Description
Install a curated, production-ready infrastructure stack onto your Kubernetes cluster. Thecluster setup command automates the installation and configuration of battle-tested components that cover TLS, ingress, observability, GitOps, and secrets management.
The command reads the ClusterPersona to determine the cluster environment and tailors component configuration accordingly (e.g., resource sizing, replica counts, storage classes).
Blessed Stack
| Component | Version | Description |
|---|---|---|
| cert-manager | v1.16.3 | Automated TLS certificate management via Let’s Encrypt or internal CAs |
| ingress-nginx | 4.11.3 | HTTP/S ingress controller for routing external traffic |
| CloudNativePG | 0.23.0 | PostgreSQL operator, required by OpenObserve for metadata storage |
| OpenObserve | 0.60.0 | Unified observability platform — logs, metrics, and traces in one tool |
| Argo CD | 7.8.28 | Declarative GitOps continuous delivery engine |
| External Secrets | 0.10.7 | Sync secrets from cloud stores (AWS Secrets Manager, Vault, GCP Secret Manager) — optional |
Flags
| Flag | Type | Default | Description |
|---|---|---|---|
--cluster-persona | string | auto-detected | ClusterPersona name; auto-detected from the current cluster if not set |
--environment | string | from ClusterPersona | Environment override: development, staging, production |
--dry-run | bool | false | Print helm commands without executing |
--skip-validation | bool | false | Skip post-install pod health checks |
--driver | string | helm | Installation driver: helm or gitops |
--gitops-output | string | ./dorgu-cluster-gitops | Output directory for GitOps repo scaffold |
--context | string | current-context | Kube-context to use; defaults to current-context |
--verbose | bool | false | Stream real-time Helm output during installation |
Helm driver
The defaulthelm driver performs an imperative installation. Each blessed stack component is installed sequentially via helm install (or helm upgrade --install) with values tailored to your cluster environment.
The installation order respects dependency chains — for example, cert-manager is installed before ingress-nginx (which needs TLS), and CloudNativePG is installed before OpenObserve (which needs PostgreSQL).
After installation, pod health checks run automatically to verify each component is ready (unless --skip-validation is set). When validation is skipped, the final summary displays “Pods healthy: — (validation skipped)” instead of a numeric count.
GitOps driver
Thegitops driver does not install components directly. Instead, it scaffolds a GitOps repository structure using the ArgoCD App-of-Apps pattern. You commit this scaffold to your Git repository and let ArgoCD reconcile the desired state.
Generated directory structure
clusters/<name>/) supports managing multiple clusters from a single repository. See the GitOps Mode guide for multi-cluster examples and day-2 operations.
Examples
Prerequisites:
kubectl and helm must be available in your PATH. The gitops driver additionally requires an ArgoCD installation on the target cluster (or you can bootstrap ArgoCD as part of the generated scaffold).