github.com/argoproj/argo-cd/v2@v2.10.5/docs/proposals/feature-bounties/hide-annotations.md (about) 1 # Proposal: Allow Hiding Certain Annotations in the Argo CD Web UI 2 3 Based on this issue: https://github.com/argoproj/argo-cd/issues/15693 4 5 Award amount: $100 6 7 ## Solution 8 9 !!! note 10 This is the proposed solution. The accepted PR may differ from this proposal. 11 12 Add a new config item in argocd-cm: 13 14 ```yaml 15 hide.secret.annotations: | 16 - openshift.io/token-secret.value 17 ``` 18 19 This will hide the `openshift.io/token-secret.value` annotation from the UI. Behind the scenes, it would likely work the 20 same way as the `last-applied-configuration` annotation hiding works: https://github.com/argoproj/gitops-engine/blob/b0fffe419a0f0a40f9f2c0b6346b752ed6537385/pkg/diff/diff.go#L897 21 22 I considered whether we'd want to support hiding things besides annotations and in resources besides secrets, but 23 having reviewed existing issues, I think this narrow feature is sufficient.