Kubernetes Setup
Begin checkpoint/migrate/restoring stateful workloads in Kubernetes in under 5 minutes!
We provide a helm chart to easily install our services on your cluster.
Install
Make sure you have the helm
tool installed.
To run the controller we require your CEDANA_AUTH_TOKEN
, which you can generate here.
export CEDANA_AUTH_TOKEN=<your token>
helm install cedana oci://registry-1.docker.io/cedana/cedana-helm \
--create-namespace -n cedana-system \
--set cedanaConfig.cedanaUrl="https://sandbox.cedana.ai/v1" \
--set cedanaConfig.cedanaAuthToken="${CEDANA_AUTH_TOKEN}"
Take a look at our Additional Configuration for customization.
If you want the latest changes or in case the above fails to work feel free to use our helm chart repo.
git clone https://github.com/cedana/cedana-helm-charts --depth=1
helm install cedana ./cedana-helm-charts/cedana-helm \
--create-namespace -n cedana-system \
--set cedanaConfig.cedanaUrl="https://sandbox.cedana.ai/v1" \
--set cedanaConfig.cedanaAuthToken="${CEDANA_AUTH_TOKEN}"
Uninstall
To uninstall Cedana completely, simply do:
helm uninstall cedana -n cedana-system
Last updated
Was this helpful?