-
Notifications
You must be signed in to change notification settings - Fork 5.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Update notifications-engine dependency (#11479)
* chore: update `notifications-engine` Signed-off-by: Jocelyn Thode <jocelyn@thode.email> * chore: generate notifications docs Signed-off-by: Jocelyn Thode <jocelyn@thode.email> Signed-off-by: Jocelyn Thode <jocelyn@thode.email>
- Loading branch information
1 parent
42efcb3
commit 8e57f53
Showing
8 changed files
with
190 additions
and
147 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
# NewRelic | ||
|
||
## Parameters | ||
|
||
* `apiURL` - the api server url, e.g. https://api.newrelic.com | ||
* `apiKey` - a [NewRelic ApiKey](https://docs.newrelic.com/docs/apis/rest-api-v2/get-started/introduction-new-relic-rest-api-v2/#api_key) | ||
|
||
## Configuration | ||
|
||
1. Create a NewRelic [Api Key](https://docs.newrelic.com/docs/apis/intro-apis/new-relic-api-keys/#user-api-key) | ||
2. Store apiKey in `argocd-notifications-secret` Secret and configure NewRelic integration in `argocd-notifications-cm` ConfigMap | ||
|
||
```yaml | ||
apiVersion: v1 | ||
kind: ConfigMap | ||
metadata: | ||
name: <config-map-name> | ||
data: | ||
service.newrelic: | | ||
apiURL: <api-url> | ||
apiKey: $newrelic-apiKey | ||
``` | ||
```yaml | ||
apiVersion: v1 | ||
kind: Secret | ||
metadata: | ||
name: <secret-name> | ||
stringData: | ||
newrelic-apiKey: apiKey | ||
``` | ||
3. Copy [Application ID](https://docs.newrelic.com/docs/apis/rest-api-v2/get-started/get-app-other-ids-new-relic-one/#apm) | ||
4. Create subscription for your NewRelic integration | ||
```yaml | ||
apiVersion: argoproj.io/v1alpha1 | ||
kind: Application | ||
metadata: | ||
annotations: | ||
notifications.argoproj.io/subscribe.<trigger-name>.newrelic: <app-id> | ||
``` | ||
## Templates | ||
* `description` - __optional__, high-level description of this deployment, visible in the [Summary](https://docs.newrelic.com/docs/apm/applications-menu/monitoring/apm-overview-page) page and on the [Deployments](https://docs.newrelic.com/docs/apm/applications-menu/events/deployments-page) page when you select an individual deployment. | ||
* Defaults to `message` | ||
* `changelog` - __optional__, A summary of what changed in this deployment, visible in the [Deployments](https://docs.newrelic.com/docs/apm/applications-menu/events/deployments-page) page when you select (selected deployment) > Change log. | ||
* Defaults to `{{(call .repo.GetCommitMetadata .app.status.sync.revision).Message}}` | ||
* `user` - __optional__, A username to associate with the deployment, visible in the [Summary](https://docs.newrelic.com/docs/apm/applications-menu/events/deployments-page) and on the [Deployments](https://docs.newrelic.com/docs/apm/applications-menu/events/deployments-page). | ||
* Defaults to `{{(call .repo.GetCommitMetadata .app.status.sync.revision).Author}}` | ||
|
||
```yaml | ||
context: | | ||
argocdUrl: https://example.com/argocd | ||
template.app-deployed: | | ||
message: Application {{.app.metadata.name}} has successfully deployed. | ||
newrelic: | ||
description: Application {{.app.metadata.name}} has successfully deployed | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
# Webex Teams | ||
|
||
## Parameters | ||
|
||
The Webex Teams notification service configuration includes following settings: | ||
|
||
* `token` - the app token | ||
|
||
## Configuration | ||
|
||
1. Create a Webex [Bot](https://developer.webex.com/docs/bots) | ||
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 | ||
|
||
``` yaml | ||
apiVersion: v1 | ||
kind: Secret | ||
metadata: | ||
name: <secret-name> | ||
stringData: | ||
webex-token: <bot access token> | ||
``` | ||
``` yaml | ||
apiVersion: v1 | ||
kind: ConfigMap | ||
metadata: | ||
name: <config-map-name> | ||
data: | ||
service.webex: | | ||
token: $webex-token | ||
``` | ||
1. Create subscription for your Webex Teams integration | ||
``` yaml | ||
apiVersion: argoproj.io/v1alpha1 | ||
kind: Application | ||
metadata: | ||
annotations: | ||
notifications.argoproj.io/subscribe.<trigger-name>.webex: <personal email or room id> | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.