Create and Register WECs for the "Common Setup" used in Examples#
The following steps show how to create two new kind clusters and
register them with the hub as descibed in the
official open cluster management docs.
Note that kind does not support three or more concurrent clusters unless you raise some limits as described in this kind "known issue": Pod errors due to “too many open files”.
-
Execute the following commands to create two kind clusters, named
cluster1andcluster2, and register them with the OCM hub. These clusters will serve as workload clusters. If you have previously executed these commands, you might already have contexts namedcluster1andcluster2. If so, you can remove these contexts using the commandskubectl config delete-context cluster1andkubectl config delete-context cluster2.: set flags to "" if you have installed KubeStellar on an OpenShift cluster flags="--force-internal-endpoint-lookup" clusters=(cluster1 cluster2); for cluster in "${clusters[@]}"; do kind create cluster --name ${cluster} kubectl config rename-context kind-${cluster} ${cluster} clusteradm --context its1 get token | grep '^clusteradm join' | sed "s/<cluster_name>/${cluster}/" | awk '{print $0 " --context '${cluster}' --singleton '${flags}'"}' | sh doneThe
clusteradmcommand grabs a token from the hub (its1context), and constructs the command to apply the new cluster to be registered as a managed cluster on the OCM hub. -
Repeatedly issue the command:
until you see that the certificate signing requests (CSR) for both cluster1 and cluster2 exist. Note that the CSRs condition is supposed to be
Pendinguntil you approve them in step 4. -
Once the CSRs are created approve the csrs to complete the cluster registration with the command:
-
Check the new clusters are in the OCM inventory and label them: