Added readme (#11016)

Signed-off-by: Aaron Ogle <aaron@geekgonecrazy.com>
This commit is contained in:
Aaron Ogle
2019-01-30 13:16:25 -08:00
committed by Kubernetes Prow Robot
parent 38d43e34cc
commit 68717819f3
2 changed files with 27 additions and 1 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
name: rocketchat
version: 0.3.0
version: 0.3.1
appVersion: 0.73.2
description: Prepare to take off with the ultimate chat platform, experience the next
level of team communications
+26
View File
@@ -0,0 +1,26 @@
# Rocket.Chat
[Rocket.Chat](https://rocket.chat/) is free, unlimited and open source. Replace email, HipChat & Slack with the ultimate team chat software solution.
## Notes on installation and recommended settings
- This chart installs rocketchat chart (stable/rocketchat)
- This chart installs mongodb chart (stable/mongodb)
- Authentication for mongodb is enabled by default (usePassword : true)
### Please set your own mongodbUsername and mongodbPassword like this:
```bash
$ helm install --set mongodb.mongodbUsername=<your_username_here>,mongodb.mongodbPassword=<your_password_here> --name my-rocketchat stable/rocketchat
```
### If you want to use another image set it like this:
```bash
$ helm install --set mongodb.mongodbUsername=<your_username_here>,mongodb.mongodbPassword=<your_password_here>,repository=<your_image> --name my-rocketchat stable/rocketchat
```
### If you want to install another version of rocket.chat image you can set the version like this:
```bash
$ helm install --set mongodb.mongodbUsername=<your_username_here>,mongodb.mongodbPassword=<your_password_here>,tag=0.74.0 --name my-rocketchat stable/rocketchat
```