docs/user-guide/application-notice.md
Argo CD can display a per-application notice as a contextual banner on the application details page and as a hover icon on the application list and tile views. This is useful for surfacing deprecation warnings, scheduled maintenance, or operational guidance scoped to a single Application without affecting unrelated apps.
The notice is configured entirely through annotations on the Application resource — no Argo CD restart or ConfigMap change is required.
[!NOTE] The instance-level banner configured via
ui.bannercontentinargocd-cmremains unchanged and continues to apply to every UI page. The per-application notice described here is independent and stacks above the details-page content.
All notice annotations use the notice.argocd.argoproj.io/ prefix.
| Annotation | Required | Default | Description |
|---|---|---|---|
notice.argocd.argoproj.io/content | Yes | — | Plain-text notice message. Truncated at 500 characters. |
notice.argocd.argoproj.io/severity | No | info | One of info, warning, critical. Drives banner color and the default icon. Unknown values fall back to info. |
notice.argocd.argoproj.io/url | No | — | If set, the banner text and icon link to this URL. Must be http:// or https://. Other schemes are rejected. |
notice.argocd.argoproj.io/permanent | No | false | When "true", the banner cannot be dismissed by users. Mirrors ui.bannerpermanent semantics. |
notice.argocd.argoproj.io/icon | No | severity-derived | Override the icon. Must be one of the allowlisted FontAwesome classes; unknown values fall back to the severity default. |
notice.argocd.argoproj.io/scope | No | both | One of banner, icon, both. Use to suppress either surface. |
| Severity | Default icon |
|---|---|
info | fa-info-circle |
warning | fa-exclamation-triangle |
critical | fa-exclamation-circle |
Only these FontAwesome class fragments may be set via the icon annotation:
fa-info-circle, fa-exclamation-triangle, fa-exclamation-circle,
fa-bell, fa-wrench, fa-clock, fa-bullhorn, fa-life-ring,
fa-shield-alt.
Minimal notice — info severity, dismissible, banner + icon:
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: guestbook
namespace: argocd
annotations:
notice.argocd.argoproj.io/content: "Scheduled DB maintenance on 2026-06-01 02:00 UTC"
spec:
# ...
Deprecation notice with a runbook link, marked permanent:
metadata:
annotations:
notice.argocd.argoproj.io/content: "Deprecated — migrate to v2 by 2026-08-01"
notice.argocd.argoproj.io/severity: "warning"
notice.argocd.argoproj.io/url: "https://wiki.example.com/v2-migration"
notice.argocd.argoproj.io/permanent: "true"
List-icon-only hint (no page banner):
metadata:
annotations:
notice.argocd.argoproj.io/content: "Owned by team-payments"
notice.argocd.argoproj.io/severity: "info"
notice.argocd.argoproj.io/scope: "icon"
notice.argocd.argoproj.io/icon: "fa-life-ring"
notice.argocd.argoproj.io/permanent to "true" removes the dismiss
control so the banner stays visible. The list/tile icon is always shown
while the notice exists.