Konstruct 0.3
Released: January 2026
Highlights
- Simplified Installation - Install Konstruct on any Kubernetes cluster without pre-existing infrastructure
- Umbrella Chart Consolidation - All services deploy through a single Helm chart
- No kubefirst Dependency - Konstruct now runs independently of kubefirst
Major Features
Simplified Installation
Konstruct 0.3 can be installed on any Kubernetes cluster - no pre-existing ArgoCD, cert-manager, Vault, or other infrastructure required.
Minimal Install (No External Dependencies):
helm install konstruct oci://europe-west2-docker.pkg.dev/civo-com/charts/konstruct \
--version 0.3.1 \
--namespace konstruct-system \
--create-namespace \
--set konstruct-api.extraEnv.DISABLE_AUTH=true \
--set konstruct-api.vaultSecretPath="" \
--set konstruct-api.externalSecrets.apiSecrets.enabled=false \
--set konstruct-api.externalSecrets.dexConfig.enabled=false \
--set konstruct-api.ingress.enabled=false \
--set konstruct-ui.ingress.enabled=false
Access via port-forward:
kubectl port-forward svc/konstruct-konstruct-ui -n konstruct-system 8080:8080
What changed:
DISABLE_AUTH=truebypasses OIDC (auto-login as admin)- No external-secrets-operator CRD required
- No ingress controller required
See Install Konstruct for the complete guide.
Automatic Platform Bootstrap
The team-management-operator bootstraps platform tools automatically:
- ArgoCD Installation - Installed via Helm SDK when control plane is configured
- GitOps Repository Setup - Platform templates pushed to your GitOps repo
- Platform Apps Deployment - cert-manager, ingress-nginx, external-secrets deployed via ArgoCD
Bootstrap sequence:
Konstruct Install -> Detect Control Plane Config -> Install ArgoCD ->
Initialize GitOps Repo -> ArgoCD Syncs Platform Apps -> Ready
Platform apps included:
- ArgoCD (self-managing after bootstrap)
- cert-manager with Let's Encrypt ClusterIssuers
- ingress-nginx
- external-secrets-operator
- external-dns (optional)
- Dex (optional)
Umbrella Chart Consolidation
All Konstruct platform services now deploy through a single konstruct umbrella Helm chart, consolidating what were previously 8 separate ArgoCD Applications into one.
Services Included:
- konstruct-api
- konstruct-ui
- application-operator
- cloudaccount-operator
- gitaccount-operator
- sso-operator
- team-management-operator
- workloadcluster-operator
Key Benefits:
- Coordinated Versioning: All services version together
- Simplified Promotion: Single chart to promote across environments
- Reduced Complexity: One ArgoCD Application instead of eight
- Atomic Deployments: Related services deploy together