github.com/argoproj/argo-cd/v2@v2.10.9/docs/operator-manual/notifications/services/pushover.md (about)

     1  # Pushover
     2  
     3  1. Create an app at [pushover.net](https://pushover.net/apps/build).
     4  2. Store the API key in `<secret-name>` Secret and define the secret name in `<config-map-name>` ConfigMap:
     5  
     6  ```yaml
     7  apiVersion: v1
     8  kind: ConfigMap
     9  metadata:
    10    name: <config-map-name>
    11  data:
    12    service.pushover: |
    13      token: $pushover-token
    14  ```
    15  
    16  ```yaml
    17  apiVersion: v1
    18  kind: Secret
    19  metadata:
    20    name: <secret-name>
    21  stringData:
    22    pushover-token: avtc41pn13asmra6zaiyf7dh6cgx97
    23  ```
    24  
    25  3. Add your user key to your Application resource:
    26  
    27  ```yaml
    28  apiVersion: argoproj.io/v1alpha1
    29  kind: Application
    30  metadata:
    31    annotations:
    32      notifications.argoproj.io/subscribe.on-sync-succeeded.pushover: uumy8u4owy7bgkapp6mc5mvhfsvpcd
    33  ```