FAQ¶
I have an error installing Robusta¶
Please refer to Help for common errors and solutions.
The helm chart in GitHub doesn't work. Why?¶
It has certain placeholders. For example, runner.image is set during our release workflow.
Use our Helm repository instead of our GitHub repository. See above.
Can I install Robusta in a different namespace?¶
Yes. By default Robusta is installed in the default namespace but you can change that.
For example, to install in the robusta namespace:
helm install robusta robusta/robusta -f ./generated_values.yaml -n robusta --create-namespace --set clusterName=<YOUR_CLUSTER_NAME>
Verify success by checking that Robusta pods are running:
kubectl get pods -n robusta
Can I run two Robusta instances in the same cluster?¶
Yes. Install each instance with a different Helm release name in its own namespace:
helm install robusta robusta/robusta -f ./generated_values.yaml -n namespace-1 --create-namespace --set clusterName=<YOUR_CLUSTER_NAME>
helm install robusta-2 robusta/robusta -f ./generated_values.yaml -n namespace-2 --create-namespace --set clusterName=<YOUR_OTHER_CLUSTER_NAME>
Use a unique clusterName for each instance so they appear separately in the Robusta UI.