Local mode

Run KuboScore directly from your local machine with kuboscore-cli.

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

Get KuboScore

Download KuboScore CLI on a machine that has access to your cluster.

# Retrieve KuboScore CLI latest version string
export KS_VERSION=$(curl -s https://download.kuboscore.io/binaries/kuboscore-cli-latest.txt)

# Download latest version of KuboScore CLI with curl
curl -O https://download.kuboscore.io/binaries/kuboscore-cli-$KS_VERSION-linux-amd64

# Allow binary execution
chmod +x ./kuboscore-cli-$KS_VERSION-linux-amd64

Note: you can check the integrity of your download with the following checksum file.

Usage

# Execute KuboScore CLI
./kuboscore-cli-$KS_VERSION-linux-amd64 --kubeconfig ~/.kube/config

Import results in KuboScore

After the scoring is done, you will get a results file that you can import on the KuboScore website.

Uploading your results file will allow you to get more details and keep track of your previous analysis from one central place.

  1. Go to KuboScore

  2. Sign in to your account

  3. Use the import feature to upload the results file

  4. Review your results!

Last updated