Official Helm charts maintained by Korio for deploying Multica components on Kubernetes.
- multica-runtime-controller: Deploys the official Multica daemon and runs provider processes in isolated Kubernetes task Pods.
Add the Korio Helm repository and update its local index:
helm repo add korioinc https://korioinc.github.io/helm
helm repo updateList the available charts:
helm search repo korioincYou can also browse the repository on Artifact Hub.
Create the namespace and controller token Secret:
kubectl create namespace multica
kubectl --namespace multica create secret generic multica-runtime-controller-token \
--from-literal=token='mul_...'Install or upgrade the runtime controller:
helm upgrade --install multica-runtime-controller \
korioinc/multica-runtime-controller \
--namespace multica \
--set multica.baseURL=https://multica.example.comSee the chart README,
values.yaml, and
values.schema.json
for prerequisites and configuration options.