mirror of
https://github.com/argoproj/argo-cd.git
synced 2026-02-20 01:28:45 +01:00
* Add support for missingkey=error in ApplicationSets Signed-off-by: Radon Rosborough <rrosborough@plaid.com> * options for cluster generator too Signed-off-by: Michael Crenshaw <350466+crenshaw-dev@users.noreply.github.com> --------- Signed-off-by: Radon Rosborough <rrosborough@plaid.com> Signed-off-by: Michael Crenshaw <350466+crenshaw-dev@users.noreply.github.com> Co-authored-by: Michael Crenshaw <350466+crenshaw-dev@users.noreply.github.com>
How the Cluster Decision Resource generator works for clusterDecisionResource
- The Cluster Decision Resource generator reads a configurable status format:
status:
clusters:
- name: cluster-01
- name: cluster-02
This is a common status format. Another format that could be read looks like this:
status:
decisions:
- clusterName: cluster-01
namespace: cluster-01
- clusterName: cluster-02
namespace: cluster-02
- Any resource that has a list of key / value pairs, where the value matches ArgoCD cluster names can be used.
- The key / value pairs found in each element of the list will be available to the template. As well,
nameandserverwill still be available to the template. - The Service Account used by the ApplicationSet controller must have access to
Getthe resource you want to retrieve the duck type definition from - A configMap is used to identify the resource to read status of generated ArgoCD clusters from. You can use multiple resources by creating a ConfigMap for each one in the ArgoCD namespace.
apiVersion: v1
kind: ConfigMap
metadata:
name: my-configmap
data:
apiVersion: group.io/v1
kind: mykinds
statusListKey: clusters
matchKey: name
apiVersion- This is the apiVersion of your resourcekind- This is the plural kind of your resourcestatusListKey- Default is 'clusters', this is the key found in your resource's status that is a list of ArgoCD clusters.matchKey- Is the key name found in the cluster list,nameandclusterNameare the keys in the examples above.
Applying the example
- Connect to a cluster with the ApplicationSet controller running
- Edit the Role for the ApplicationSet service account, and grant it permission to
listtheplacementdecisionsresources, from apiGroupscluster.open-cluster-management.io/v1alpha1
- apiGroups:
- "cluster.open-cluster-management.io/v1alpha1"
resources:
- placementdecisions
verbs:
- list
- Apply the following controller and associated ManagedCluster CRD's: https://github.com/open-cluster-management/placement
- Now apply the PlacementDecision and an ApplicationSet:
kubectl apply -f ./placementdecision.yaml
kubectl apply -f ./configMap.yaml
kubectl apply -f ./ducktype-example.yaml
- For now this won't do anything until you create a controller that populates the
Status.Decisionsarray.