github.com/argoproj/argo-cd/v2@v2.10.5/docs/user-guide/extra_info.md (about) 1 # Add extra Application info 2 3 You can add additional information to an Application on your Argo CD dashboard. 4 If you wish to add clickable links, see [Add external URL](https://argo-cd.readthedocs.io/en/stable/user-guide/external-url/). 5 6 This is done by providing the 'info' field a key-value in your Application manifest. 7 8 Example: 9 ```yaml 10 project: argo-demo 11 source: 12 repoURL: 'https://demo' 13 path: argo-demo 14 destination: 15 server: https://demo 16 namespace: argo-demo 17 info: 18 - name: Example: 19 value: >- 20 https://example.com 21 ``` 22  23 24 The additional information will be visible on the Argo CD Application details page. 25 26  27 28 