mirror of
https://github.com/argoproj/argo-cd
synced 2026-04-30 13:27:18 +00:00
22 lines
658 B
Markdown
22 lines
658 B
Markdown
# Add external URL
|
|
|
|
You can add additional external links to ArgoCD dashboard. For example
|
|
links monitoring pages or documentation instead of just ingress hosts or other apps.
|
|
|
|
ArgoCD generates a clickable links to external pages for a resource based on per resource annotation.
|
|
|
|
Example:
|
|
```yaml
|
|
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: my-svc
|
|
annotations:
|
|
link.argocd.argoproj.io/external-link: http://my-grafana.com/pre-generated-link
|
|
```
|
|

|
|
|
|
The external link icon will be visible for respective resource on ArgoCD application details page.
|
|
|
|

|
|
|