I am confused on the "application destination" as I am getting different errors when I am adding the destination within the Application config vs Projects Config.
Asked
Active
Viewed 36 times
0

crenshaw-dev
- 7,504
- 3
- 45
- 81

devops_dummy
- 21
- 8
1 Answers
1
The error message means that the my-project
project does not permit your Application's destination (the local cluster, in the argocd
namespace).
Make sure your project allows that server and namespace.

crenshaw-dev
- 7,504
- 3
- 45
- 81
-
Actually adding the below fixed the issue: 'clusterResourceWhitelist: - group: '*' kind: '*' ' – devops_dummy Jul 27 '23 at 18:25
-
Interesting. That's a really surprising error message for that config issue. – crenshaw-dev Jul 27 '23 at 20:45
-
1Looks like allowing (basically whitelisting) everything "*" fixed the issue my allowing the projects to deploy in the applications. I will keep you posted if I hit snag with more modifications on its way. Appreciate the reply here Crenshaw. – devops_dummy Jul 31 '23 at 19:38