Automatic setup

Setup KuboVisor cloud in less than 30 seconds.

The following content assumes you have kubectl binary installed, as well as a privileged access to your cluster to create listed resources.

For your convenience, we provide a hand-crafted Bash script that will perform all the actions described in the manual setup instructions.

📜 Download the script

curl -sO https://download.kubolabs.io/scripts/setup_kubovisor
chmod +x setup_kubovisor

🧐 Check current context

Make sure that your current kubecontext points to the correct cluster by, for example, checking the cluster Nodes:

kubectl get nodes

Execute the script

To setup KuboVisor on your cluster, you need to choose between the limited and read-only permission levels.

# Use limited permissions
./setup_kubovisor limited

# Use read-only permissions
./setup_kubovisor read-only

At the end of the execution, a kubeconfig file will be generated in the current directory. Use this kubeconfig on KuboVisor to add your cluster.

Last updated