Skip to main content
Version: 3.13-dev

Manage Clusters

This section describes the subsequent possible actions that can be performed with the newly added or existing clusters.

In a nutshell, cluster in KubeRocketCI Portal is a Kubernetes secret that stores credentials and endpoint to connect to the another cluster. Adding new clusters allows users to deploy applications in several clusters, thus improving flexibility of your infrastructure.

The added cluster will be listed in the clusters list allowing you to do the following:

  • Learn more - opens the cluster related documentation page.
  • + Add cluster - displays the cluster creation form.
  • Cluster properties - shows the specified cluster properties.
  • Delete cluster - remove cluster by clicking the recycle bin icon.
  • Undo/Save changes - these buttons apply or revert changes made to the cluster configuration.

View Authentication Data​

To view authentication data that is used to connect to the cluster, click the eye icon in the corresponding field or use the kubectl describe command:

kubectl get secret cluster_name -n krci -o yaml

Delete Cluster​

To delete cluster, click the bin icon, enter cluster name, and confirm deletion. Alternatively, use the kubectl delete command as follows:

kubectl delete secret cluster_name -n krci