Jian Qiu f3ea6c5d99 update deps and enable action
Signed-off-by: Jian Qiu <jqiu@redhat.com>
2021-06-22 13:15:34 +08:00
2021-06-09 20:00:35 +08:00
2021-06-22 13:15:34 +08:00
2021-06-22 13:15:34 +08:00
2021-06-22 13:15:34 +08:00
2021-06-22 13:15:34 +08:00
2020-04-01 12:43:36 -04:00
2021-06-22 13:15:34 +08:00
2020-11-09 14:40:21 +08:00
2021-06-22 13:15:34 +08:00
2021-06-22 13:15:34 +08:00
2021-06-22 13:15:34 +08:00
2020-08-04 15:54:44 +08:00
2021-06-21 03:28:54 +00:00
2020-07-10 16:23:50 -04:00
2021-06-11 02:04:28 +00:00
2020-06-01 14:51:47 +08:00

Cluster Registration

Contains controllers that support:

Community, discussion, contribution, development and support

Check the CONTRIBUTING Doc for how to contribute to the repo.


Quickstart

  1. Clone this repo:
git clone https://github.com/open-cluster-management-io/registration.git
  1. Prepare a kind cluster, like:
kind create cluster

Note: The Kubernetes cluster needs v1.19 or greater

  1. Export your kind cluster config, like:
export KUBECONFIG=$HOME/.kube/config
  1. Deploy the hub control plane:
make deploy-hub
make deploy-webhook
  1. Deploy the registraion agent:
make bootstrap-secret
make deploy-spoke

You now have a cluster with registraion up and running. The cluster has been registered to itself.

Next you need to approve your cluster like this:

  1. Approve the managed cluster
kubectl patch managedcluster local-development -p='{"spec":{"hubAcceptsClient":true}}' --type=merge
  1. Apporve the CSR of the managed clsuter
kubectl get csr -l open-cluster-management.io/cluster-name=local-development | grep Pending | awk '{print $1}' | xargs kubectl certificate approve
  1. Finally, you can find the managed cluster is joined and available
kubectl get managedcluster

NAME                HUB ACCEPTED   MANAGED CLUSTER URLS   JOINED   AVAILABLE   AGE
local-development   true                                  True     True        2m21s

You can find more details for cluster join process from this design doc, and after the registration is deployed, you can try the following features

Cluster Set

  1. Create a cluster set by ManagedClusterSet API
cat << EOF | kubectl apply -f -
apiVersion: cluster.open-cluster-management.io/v1alpha1
kind: ManagedClusterSet
metadata:
  name: clusterset1
EOF
  1. Add your cluster to the created cluster
kubectl label managedclusters local-development "cluster.open-cluster-management.io/clusterset=clusterset1" --overwrite
  1. Then, you can find there is one managed cluster is selected from the managed cluster set status, like:
kubectl get managedclustersets clusterset1 -o jsonpath='{.status.conditions[?(@.type=="ClusterSetEmpty")]}'

{"message":"1 ManagedClusters selected","reason":"ClustersSelected"}

You can find more details from the managed cluster set design doc

Cluster Claim

  1. Create a ClusterClaim to claim the ID of this cluster
cat << EOF | kubectl apply -f -
apiVersion: cluster.open-cluster-management.io/v1alpha1
kind: ClusterClaim
metadata:
  name: id.k8s.io
spec:
  value: local-development
EOF
  1. Then, you can find the claim from the managed cluster status, like:
kubectl get managedcluster local-development -o jsonpath='{.status.clusterClaims}'

[{"name":"id.k8s.io","value":"local-development"}]

You can find more details from the cluster claim design doc

Managed Cluster Add-Ons

A managed cluster add-ons is deployed on the managed cluster to extend the capability of managed cluster. Developers can leverage add-on framework to implement their add-ons. The registration provides the management of the lease update and registration for all managed cluster addons, you can find more details from the Managed cluster addons management design doc

Note: The addon-management is in alpha stage, it is not enabled by default, it is controlled by feature gate AddonManagement

Description
Core components in the OCM project. Report here if you found any issues in OCM.
Readme Apache-2.0 112 MiB
Languages
Go 98.8%
Shell 0.5%
Makefile 0.5%
Python 0.1%
Smarty 0.1%