Deploy Orbita to Kubernetes.
Orbita ships a Helm chart and plain manifests for a three-node StatefulSet. Every process serves the worker path; three eligible nodes also form the Raft voter set.
Helm
helm install orbita deploy/helm/orbita \
--namespace orbita \
--create-namespace
Before relying on durable data, configure objectStore.endpoint, the bucket, region, and credential source. The chart default leaves the endpoint empty.
kubectl --namespace orbita port-forward svc/orbita 7100:7100
orbita --endpoint http://127.0.0.1:7100 cluster ready
Plain manifests
kubectl apply -f deploy/manifests/orbita.yaml
What the chart includes
- A three-node StatefulSet
- Persistent local WAL volumes
- Startup, readiness, and liveness probes
- A PodDisruptionBudget
- Topology spreading
- A client Service on
7100 - Private headless peer Services on
7101 - Optional NetworkPolicy
The chart is evaluation scaffolding while backup, restore, security hardening, and production evidence remain incomplete. See the Helm values .