This document explains how to add KubeStellar's 'workspaces' as Argo CD's 'clusters'.
Add KubeStellar's workspaces to Argo CD as clusters¶
As of today, the 'workspaces', aka 'logical clusters' used by KubeStellar are not identical with ordinary Kubernetes clusters. Thus, in order to add them as Argo CD's 'clusters', there are a few more steps to take.
For KubeStellar's Inventory Management Workspace (IMW) and Workload Management Workspace (WMW). The steps are similar. Let's take WMW as an example:
- Create `kube-system` namespace in the workspace.
- Make sure necessary apibindings exist in the workspace. For WMW, we need one for Kubernetes and one for KubeStellar's edge API.
- Exclude `ClusterWorkspace` from discovery and sync.
Make sure `resource.exclusions` exists in the `data` field of the `argocd-cm` configmap as follows:
kubectl -n argocd edit cm argocd-cm
Restart the Argo CD server.data: resource.exclusions: | - apiGroups: - "tenancy.kcp.io" kinds: - "ClusterWorkspace" clusters: - "*"
Argo CD's documentation mentions this feature as [Resource Exclusion/Inclusion](https://argo-cd.readthedocs.io/en/stable/operator-manual/declarative-setup/#resource-exclusioninclusion).kubectl -n argocd rollout restart deployment argocd-server
- Make sure the current context uses WMW, then identify the admin.kubeconfig.
The command and output should be similar to
### Create Argo CD Applications Once KubeStellar's workspaces are added, Argo CD Applications can be created as normal. There are a few examples listed [here](https://github.com/edge-experiments/gitops-source/tree/main/kubestellar), and the commands to use the examples are listed as follows. #### Create Argo CD Applications against KubeStellar's IMW Create two Locations. The command and output should be similar to
$ argocd cluster add --name wmw --kubeconfig ./admin.kubeconfig workspace.kcp.io/current WARNING: This will create a service account `argocd-manager` on the cluster referenced by context `workspace.kcp.io/current` with full cluster level privileges. Do you want to continue [y/N]? y INFO[0001] ServiceAccount "argocd-manager" already exists in namespace "kube-system" INFO[0001] ClusterRole "argocd-manager-role" updated INFO[0001] ClusterRoleBinding "argocd-manager-role-binding" updated Cluster 'https://172.31.31.125:6443/clusters/root:my-org:wmw-turbo' added
Create two SyncTargets. The command and output should be similar to$ argocd app create locations \ --repo https://github.com/edge-experiments/gitops-source.git \ --path kubestellar/locations/ \ --dest-server https://172.31.31.125:6443/clusters/root:imw-turbo \ --sync-policy automated application 'locations' created
#### Create Argo CD Application against KubeStellar's WMW Create a Namespace. The command and output should be similar to$ argocd app create synctargets \ --repo https://github.com/edge-experiments/gitops-source.git \ --path kubestellar/synctargets/ \ --dest-server https://172.31.31.125:6443/clusters/root:imw-turbo \ --sync-policy automated application 'synctargets' created
Create a Deployment for 'cpumemload'. The command and output should be similar to$ argocd app create namespace \ --repo https://github.com/edge-experiments/gitops-source.git \ --path kubestellar/namespaces/ \ --dest-server https://172.31.31.125:6443/clusters/root:my-org:wmw-turbo \ --sync-policy automated application 'namespace' created
Create an EdgePlacement. The command and output should be similar to$ argocd app create cpumemload \ --repo https://github.com/edge-experiments/gitops-source.git \ --path kubestellar/workloads/cpumemload/ \ --dest-server https://172.31.31.125:6443/clusters/root:my-org:wmw-turbo \ --sync-policy automated application 'cpumemload' created
$ argocd app create edgeplacement \ --repo https://github.com/edge-experiments/gitops-source.git \ --path kubestellar/placements/ \ --dest-server https://172.31.31.125:6443/clusters/root:my-org:wmw-turbo \ --sync-policy automated application 'edgeplacement' created
Other Resources¶
Medium - Sync 10,000 ArgoCD Applications in One Shot
Medium - Sync 10,000 ArgoCD Applications in One Shot, by Yourself
Medium - GitOpsCon - here we come
ArgoCD Scale Experiment - KubeStellar Community Demo Day¶

GitOpsCon 2023 - A Quantitative Study on Argo Scalability - Andrew Anderson & Jun Duan, IBM¶

ArgoCD and KubeStellar in the news¶



