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

     1  # Webex Teams
     2  
     3  ## Parameters
     4  
     5  The Webex Teams notification service configuration includes following settings:
     6  
     7  * `token` - the app token
     8  
     9  ## Configuration
    10  
    11  1. Create a Webex [Bot](https://developer.webex.com/docs/bots)
    12  1. Copy the bot access [token](https://developer.webex.com/my-apps) and store it in the `argocd-notifications-secret` Secret and configure Webex Teams integration in `argocd-notifications-cm` ConfigMap
    13  
    14      ``` yaml
    15      apiVersion: v1
    16      kind: Secret
    17      metadata:
    18      name: <secret-name>
    19      stringData:
    20      webex-token: <bot access token>
    21      ```
    22  
    23      ``` yaml
    24      apiVersion: v1
    25      kind: ConfigMap
    26      metadata:
    27      name: <config-map-name>
    28      data:
    29      service.webex: |
    30          token: $webex-token
    31      ```
    32  
    33  1. Create subscription for your Webex Teams integration
    34  
    35      ``` yaml
    36      apiVersion: argoproj.io/v1alpha1
    37      kind: Application
    38      metadata:
    39      annotations:
    40          notifications.argoproj.io/subscribe.<trigger-name>.webex: <personal email or room id>
    41      ```