Signed-off-by: Mike Ng <ming@redhat.com>
4.9 KiB
Getting Started
Prerequisites
-
kind must be installed on your local machine. The Kubernetes version must be >= 1.19. See the kind user guide for more details.
-
Download and install clusteradm. For Linux OS, run the following commands:
wget -qO- https://github.com/open-cluster-management-io/clusteradm/releases/latest/download/clusteradm_linux_amd64.tar.gz | sudo tar -xvz -C /usr/local/bin/ sudo chmod +x /usr/local/bin/clusteradm -
The kubectl cli, which should be compatible with your Kubernetes version. See install and setup for more info.
Steps
-
Setup an OCM Hub cluster and registered an OCM Managed cluster.
curl -L https://raw.githubusercontent.com/open-cluster-management-io/OCM/main/solutions/setup-dev-environment/local-up.sh | bashSee Open Cluster Management (OCM) Quick Start for more details.
-
Install Argo CD on the Hub cluster.
kubectl config use-context kind-hub kubectl create namespace argocd kubectl apply -n argocd -f https://raw.githubusercontent.com/argoproj/argo-cd/stable/manifests/install.yamlSee Argo CD website for more details.
-
Install the OCM Argo CD add-on on the Hub cluster:
kubectl config use-context kind-hub clusteradm install hub-addon --names argocdIf your hub controller starts successfully, you should see:
$ kubectl -n argocd get deploy argocd-pull-integration NAME READY UP-TO-DATE AVAILABLE AGE argocd-pull-integration 1/1 1 1 55s -
Enable the add-on for your choice of managed clusters:
kubectl config use-context kind-hub clusteradm addon enable --names argocd --clusters cluster1,cluster2Replace
cluster1andcluster2with your managed cluster names.If your add-on starts successfully, you should see:
$ kubectl -n cluster1 get managedclusteraddon argocd NAME AVAILABLE DEGRADED PROGRESSING argocd True False -
On the Hub cluster, apply the
guestbook-app-setmanifest:kubectl config use-context kind-hub kubectl apply -f example/guestbook-app-set.yamlNote: The Application template inside the ApplicationSet must contain the following content:
labels: apps.open-cluster-management.io/pull-to-ocm-managed-cluster: 'true' annotations: argocd.argoproj.io/skip-reconcile: 'true' apps.open-cluster-management.io/ocm-managed-cluster: '{{name}}'The label allows the pull model controller to select the Application for processing.
The
skip-reconcileannotation is to prevent the Application from reconciling on the Hub cluster.The
ocm-managed-clusterannotation is for the ApplicationSet to generate multiple Application based on each cluster generator targets. -
When this guestbook ApplicationSet reconciles, it will generate an Application for the registered managed clusters. For example:
$ kubectl config use-context kind-hub $ kubectl -n argocd get appset NAME AGE guestbook-app 84s $ kubectl -n argocd get app NAME SYNC STATUS HEALTH STATUS cluster1-guestbook-app cluster2-guestbook-app -
On the Hub cluster, the pull controller will wrap the Application with a ManifestWork. For example:
$ kubectl config use-context kind-hub $ kubectl -n cluster1 get manifestwork NAME AGE cluster1-guestbook-app-d0e5 2m41s -
On a managed cluster, you should see that the Application is pulled down successfully. For example:
$ kubectl config use-context kind-cluster1 $ kubectl -n argocd get app NAME SYNC STATUS HEALTH STATUS cluster1-guestbook-app Synced Healthy $ kubectl -n guestbook get deploy NAME READY UP-TO-DATE AVAILABLE AGE guestbook-ui 1/1 1 1 7m36s -
On the Hub cluster, the status controller will sync the dormant Application with the ManifestWork status feedback. For example:
$ kubectl config use-context kind-hub $ kubectl -n argocd get app NAME SYNC STATUS HEALTH STATUS cluster1-guestbook-app Synced Healthy cluster2-guestbook-app Synced Healthy
If you have issues or need help troubleshooting, check out the troubleshooting guide