From 6295ece324d65bf35e643cc4fe0fe557e0a260b2 Mon Sep 17 00:00:00 2001 From: Prasad Ghangal Date: Mon, 28 Sep 2020 10:26:07 +0530 Subject: [PATCH] Update CONTRIBUTING.md Signed-off-by: Prasad Ghangal --- CONTRIBUTING.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 87b149705..0eb25d145 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -12,7 +12,7 @@ You can contribute to documentation by following [these instructions](https://gi ## Compile BotKube from source code -Before you proceed, make sure you have installed BotKube Slack/Mattermost app and copied required token as per the steps documented [here](https://www.botkube.io/installation/) +Before you proceed, make sure you have installed BotKube Slack/Mattermost/Teams app and copied required token as per the steps documented [here](https://www.botkube.io/installation/) ### Prerequisite @@ -47,11 +47,11 @@ Now you can build and run BotKube by one of the following ways $ helm repo update $ kubectl create namespace botkube $ helm install --version v9.99.9-dev botkube --namespace botkube \ - --set communicationConfig.communications.slack.enabled=true \ - --set communicationConfig.communications.slack.channel= \ - --set communicationConfig.communications.slack.token= \ - --set resourceConfig.settings.clustername= \ - --set resourceConfig.settings.allowkubectl= \ + --set communications.slack.enabled=true \ + --set communications.slack.channel= \ + --set communications.slack.token= \ + --set settings.clustername= \ + --set settings.kubectl.enabled= \ --set image.repository=/botkube \ --set image.tag=latest \ infracloudio/botkube @@ -68,7 +68,7 @@ Now you can build and run BotKube by one of the following ways b. Using kubectl 1. Edit deploy-all-in-one.yaml and update the configuration. - Set SLACK_ENABLED, SLACK_CHANNEL, SLACK_API_TOKEN, clustername, allowkubectl and update the resource events configuration you want to receive notifications for in the configmap. + Set SLACK_ENABLED, SLACK_CHANNEL, SLACK_API_TOKEN, clustername, kubectl.enabled and update the resource events configuration you want to receive notifications for in the configmap. 2. Create botkube namespace and deploy resources ```sh $ kubectl create ns botkube && kubectl create -f deploy-all-in-one.yaml -n botkube