Update mattermost-support.md (#361)

##### ISSUE TYPE
<!--- Pick one below and delete the rest: -->
 
 - Typo fix Pull Request


##### SUMMARY
<!--- Describe the change, including rationale and design decisions -->fixed a typo
This commit is contained in:
NEERAJ ADITYANANTH POLAMPALLI 2020-10-01 11:26:18 +05:30 committed by GitHub
parent 3e04e7ed62
commit 0cdf8758a7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -16,7 +16,7 @@ Steps for adding Mattermost support:
- Add Mattermost configurations in helm chart or config.yaml.
- While starting controller, check in config if Mattermost support is enabled.
- If support enabled, initialize Mattermost with values from config.
- Start a go routinue for Mattermost.
- Start a goroutine for Mattermost.
- In controller, add notifier for `SendEvent` and `SendMessage` for Mattermost.
#### Adding package
@ -39,7 +39,7 @@ We need to add below values for Mattermost in Helm Chart or config.yaml.
#### Controller Modifications
- In `main.go`, check in config if Mattermost support is enabled.
- If yes, then get config and add a go routine for Mattermost.
- If yes, then get config and add a goroutine for Mattermost.
- In `controller.go`, for event notifications and sending start/stop messages, add notifier for Mattermost.
### References