Skip to content

Latest commit

 

History

History
56 lines (39 loc) · 1.5 KB

File metadata and controls

56 lines (39 loc) · 1.5 KB

Korio Helm Charts

Artifact Hub

Official Helm charts maintained by Korio for deploying Multica components on Kubernetes.

Available Charts

Getting Started

Add the Korio Helm repository and update its local index:

helm repo add korioinc https://korioinc.github.io/helm
helm repo update

List the available charts:

helm search repo korioinc

You can also browse the repository on Artifact Hub.

Install

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.com

Configuration

See the chart README, values.yaml, and values.schema.json for prerequisites and configuration options.