in argocd-clusterprofile-syncer/cmd/main.go [189:197]
func (r *ClusterProfileReconciler) SetupWithManager(mgr ctrl.Manager) error {
return ctrl.NewControllerManagedBy(mgr).
For(&clusterinventoryv1alpha1.ClusterProfile{}).
Owns(&corev1.Secret{}).
WithOptions(controller.Options{
MaxConcurrentReconciles: maxConcurrentReconciles,
}).
Complete(r)
}