-
Notifications
You must be signed in to change notification settings - Fork 140
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #223 from BeryJu/sentry-environment
providers/sentry: add environment support
- Loading branch information
Showing
4 changed files
with
22 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -224,6 +224,23 @@ kubectl create secret generic $SECRET_NAME \ | |
--from-file=caFile=ca.crt | ||
``` | ||
|
||
### Sentry | ||
|
||
The sentry provider uses the `channel` field to specify which environment the messages are sent for: | ||
|
||
```yaml | ||
apiVersion: notification.toolkit.fluxcd.io/v1beta1 | ||
kind: Provider | ||
metadata: | ||
name: sentry | ||
namespace: default | ||
spec: | ||
type: sentry | ||
channel: my-cluster-name | ||
# webhook address (ignored if secretRef is specified) | ||
address: https://[email protected]/12341234 | ||
``` | ||
### Azure Event Hub | ||
The Azure Event Hub supports two authentication methods, [JWT](https://docs.microsoft.com/en-us/azure/event-hubs/authenticate-application) and [SAS](https://docs.microsoft.com/en-us/azure/event-hubs/authorize-access-shared-access-signature) based. | ||
|
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
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