Skip to content

Commit

Permalink
Fix helm2 installation command options (#40)
Browse files Browse the repository at this point in the history
Signed-off-by: Prasad Ghangal <prasad.ghangal@gmail.com>
  • Loading branch information
PrasadG193 authored May 5, 2020
1 parent b16a05b commit bc801fb
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 19 deletions.
16 changes: 8 additions & 8 deletions content/installation/ElasticSearch/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,14 +43,14 @@ toc = true

```bash
$ helm install --version v0.10.0 --name botkube --namespace botkube \
--set config.communications.elasticsearch.enabled=true \
--set config.communications.elasticsearch.server=<ELASTICSEARCH_ADDRESS> \
--set config.communications.elasticsearch.username=<ELASTICSEARCH_USERNAME> \
--set config.communications.elasticsearch.password=<ELASTICSEARCH_PASSWORD> \
--set config.communications.elasticsearch.index.name=<ELASTICSEARCH_INDEX_NAME> \
--set config.communications.elasticsearch.index.type=<ELASTICSEARCH_INDEX_TYPE> \
--set config.communications.elasticsearch.index.shards=<ELASTICSEARCH_INDEX_SHARDS> \
--set config.communications.elasticsearch.index.replicas=<ELASTICSEARCH_INDEX_REPLICAS> \
--set communications.elasticsearch.enabled=true \
--set communications.elasticsearch.server=<ELASTICSEARCH_ADDRESS> \
--set communications.elasticsearch.username=<ELASTICSEARCH_USERNAME> \
--set communications.elasticsearch.password=<ELASTICSEARCH_PASSWORD> \
--set communications.elasticsearch.index.name=<ELASTICSEARCH_INDEX_NAME> \
--set communications.elasticsearch.index.type=<ELASTICSEARCH_INDEX_TYPE> \
--set communications.elasticsearch.index.shards=<ELASTICSEARCH_INDEX_SHARDS> \
--set communications.elasticsearch.index.replicas=<ELASTICSEARCH_INDEX_REPLICAS> \
--set config.settings.clustername=<CLUSTER_NAME> \
--set image.repository=infracloudio/botkube \
--set image.tag=v0.10.0 \
Expand Down
12 changes: 6 additions & 6 deletions content/installation/Mattermost/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,12 +92,12 @@ Autocomplete | True

```bash
$ helm install --version v0.10.0 --name botkube --namespace botkube \
--set config.communications.mattermost.enabled=true \
--set config.communications.mattermost.url=<MATTERMOST_SERVER_URL> \
--set config.communications.mattermost.cert=<MATTERMOST_CERT> \
--set config.communications.mattermost.token=<MATTERMOST_TOKEN> \
--set config.communications.mattermost.team=<MATTERMOST_TEAM> \
--set config.communications.mattermost.channel=<MATTERMOST_CHANNEL> \
--set communications.mattermost.enabled=true \
--set communications.mattermost.url=<MATTERMOST_SERVER_URL> \
--set communications.mattermost.cert=<MATTERMOST_CERT> \
--set communications.mattermost.token=<MATTERMOST_TOKEN> \
--set communications.mattermost.team=<MATTERMOST_TEAM> \
--set communications.mattermost.channel=<MATTERMOST_CHANNEL> \
--set config.settings.clustername=<CLUSTER_NAME> \
--set config.settings.allowkubectl=<ALLOW_KUBECTL> \
--set image.repository=infracloudio/botkube \
Expand Down
6 changes: 3 additions & 3 deletions content/installation/Slack/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,9 @@ After installing BotKube app to your Slack workspace, you could see a new bot us

```bash
$ helm install --version v0.10.0 --name botkube --namespace botkube \
--set config.communications.slack.enabled=true \
--set config.communications.slack.channel=<SLACK_CHANNEL_NAME> \
--set config.communications.slack.token=<SLACK_API_TOKEN_FOR_THE_BOT> \
--set communications.slack.enabled=true \
--set communications.slack.channel=<SLACK_CHANNEL_NAME> \
--set communications.slack.token=<SLACK_API_TOKEN_FOR_THE_BOT> \
--set config.settings.clustername=<CLUSTER_NAME> \
--set config.settings.allowkubectl=<ALLOW_KUBECTL> \
--set image.repository=infracloudio/botkube \
Expand Down
4 changes: 2 additions & 2 deletions content/installation/Webhook/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ BotKube can be integrated with external apps via Webhooks. A webhook is essentia

```bash
$ helm install --version v0.10.0 --name botkube --namespace botkube \
--set config.communications.webhook.enabled=true \
--set config.communications.webhook.url=<WEBHOOK_URL> \
--set communications.webhook.enabled=true \
--set communications.webhook.url=<WEBHOOK_URL> \
--set config.settings.clustername=<CLUSTER_NAME> \
--set image.repository=infracloudio/botkube \
--set image.tag=v0.10.0 \
Expand Down

0 comments on commit bc801fb

Please sign in to comment.