Direct Connection

    Note

    Multi-cluster management requires Kubesphere to be installed on the target clusters. If you have an existing cluster, you can deploy KubeSphere on it with a minimal installation so that it can be imported. See Minimal KubeSphere on Kubernetes for details.

    Direct Connection

    If the kube-apiserver address of Member Cluster (hereafter referred to as M Cluster) is accessible on any node of the Host Cluster (hereafter referred to as H Cluster), you can adopt Direction Connection. This method is applicable when the kube-apiserver address of M Cluster can be exposed or H Cluster and M Cluster are in the same private network or subnet.

    If you already have a standalone KubeSphere installed, you can set the value of to host by editing the cluster configuration. You need to wait for a while so that the change can take effect.

    • Option A - Use Web Console:

    Use admin account to log in the console and go to CRDs on the Cluster Management page. Enter the keyword ClusterConfiguration and go to its detail page. Edit the YAML of ks-installer, which is similar to Enable Pluggable Components.

    • Option B - Use Kubectl:

    Scroll down and set the value of clusterRole to host, then click Update (if you use the web console) to make it effective:

    1. multicluster:

    There is no big difference if you define a host cluster before installation. Please note that the clusterRole in config-sample.yaml or cluster-configuration.yaml has to be set as follows:

    1. multicluster:
    1. kubectl logs -n kubesphere-system $(kubectl get pod -n kubesphere-system -l app=ks-install -o jsonpath='{.items[0].metadata.name}') -f

    In order to manage the member cluster within the host cluster, you need to make jwtSecret the same between them. Therefore, you need to get it first from the host cluster by the following command.

    The output may look like this:

    1. jwtSecret: "gfIwilcc0WjNGKJ5DLeksf2JKfcLgTZU"

    If you already have a standalone KubeSphere installed, you can set the value of clusterRole to member by editing the cluster configuration. You need to wait for a while so that the change can take effect.

    • Option A - Use Web Console:

    Use admin account to log in the console and go to CRDs on the Cluster Management page. Enter the keyword ClusterConfiguration and go to its detail page. Edit the YAML of ks-installer, which is similar to .

    • Option B - Use Kubectl:
    1. kubectl edit cc ks-installer -n kubesphere-system

    Input the corresponding jwtSecret shown above:

    1. authentication:

    Scroll down and set the value of to member, then click Update (if you use the web console) to make it effective:

    There is no big difference if you define a member cluster before installation. Please note that the clusterRole in config-sample.yaml or cluster-configuration.yaml has to be set as follows:

    1. authentication:
    2. jwtSecret: gfIwilcc0WjNGKJ5DLeksf2JKfcLgTZU
    1. multicluster:
    2. clusterRole: member

    You can use kubectl to retrieve the installation logs to verify the status by running the following command. Wait for a while, and you will be able to see the successful log return if the member cluster is ready.

    1. kubectl logs -n kubesphere-system $(kubectl get pod -n kubesphere-system -l app=ks-install -o jsonpath='{.items[0].metadata.name}') -f
    1. Open the H Cluster dashboard and click Add Cluster.

    1. Enter the basic information of the cluster to be imported and click Next.

    Import Cluster

    1. In Connection Method, select Direct Connection to Kubernetes cluster.

    Tip

    Please make sure the server address in KubeConfig is accessible on any node of the H Cluster. For address, you can fill in the KubeSphere APIServer address or leave it blank.

    1. Click Import and wait for cluster initialization to finish.