Cloud mode
Run KuboScore on your cluster in cloud mode.
Last updated
Run KuboScore on your cluster in cloud mode.
Last updated
The following content assumes you have kubectl
binary installed, as well as a privileged access to your cluster.
If you already have a kubeconfig file with enough permissions, you can score your cluster right away!
We recommend to create a specific ServiceAccount object in your cluster to authenticate KuboScore and grant it specific permissions, but nothing prevents you from using an already existing ServiceAccount.
In this example, the ServiceAccount ksa-kuboscore
will be created in the default
Namespace. You are free to rename the ServiceAccount and/or to create it in another Namespace.
Kubernetes ≥ 1.24
If your cluster version equals or is over 1.24 (or if you have the LegacyServiceAccountTokenNoAutoGeneration
feature gate enabled), you will have to manually generate an authentication token for the ServiceAccount.
To get your cluster’s Kubernetes version, you can use this kubectl
command:
To generate an authentication token for the ServiceAccount, you need to create a Secret defined by the following YAML. Save its content in a kuboscore-secret.yaml
file:
Apply the Secret on your cluster to generate the ServiceAccount token:
References:
If you are using an already existing ServiceAccount that has broader permissions than what is listed below, you can skip this section.
KuboScore needs some privileges to be able to perform its analysis, therefore we need to create a ClusterRole and a ClusterRoleBinding object.
You will find below the ClusterRole definition. Create a new file called kuboscore-clusterrole.yaml
and paste the content of this definition in it:
Likewise, create a kuboscore-clusterrolebinding.yaml
file and paste the content of the following ClusterRoleBinding definition in it:
If you want to use a different ServiceAccount, update the values of subjects[0].name
and subjects[0].namespace
to match your ServiceAccount name and its Namespace.
References:
If you want to use a different ServiceAccount, update the parameters provided to the script to match your ServiceAccount name and its Namespace.
To score your cluster, we need to be able to reach it. You will find below the network restrictions that we support:
Once access to your cluster is configured, scoring it is pretty easy:
Go to KuboScore
Signing to your account
Upload your kubeconfig file
Fill in the form
Launch the scoring!
On the cluster credentials form, we ask you for a bunch of information to be able to connect to your cluster.
Cluster description
This is a description that you can set to quickly find your cluster among other analysis.
Kubeconfig file
This is the kubeconfig file you should have generated for the service account that we created in the prerequisites section.
If your cluster sits in a private network only reachable through a bastion host, you must tick the « This cluster is only reachable through an SSH tunnel » checkbox and add the following additional information.
Bastion host
This is the IP address or DNS hostname on which your bastion is publicly exposed.
Bastion port
This is the port used for SSH connections by your bastion.
Bastion login
This is the user login that we should use to authenticate on your bastion. If you followed our guide to the letter, it should be kubolabs
.
Bastion SSH key
This is the SSH private key that was generated through our guide for the kubolabs
user.
KubeApi address
This is the Kubernetes API endpoint to use from inside your network in the following form:
Example:
Restriction | Supported | Comment |
---|---|---|
None
—
Network whitelist
Add the following IP to the list of authorized networks: 34.141.253.143.
SSH bastion
Fully private
Use KuboScore in local mode instead