redmine: added redmineLanguage parameter

This commit is contained in:
Sameer Naik
2016-03-15 09:32:58 +05:30
parent 3ba1255969
commit 03b258fb7e
2 changed files with 4 additions and 1 deletions

View File

@@ -102,12 +102,13 @@ The Redmine chart will be copied into your workspace, located at `~/.helm/worksp
$ helm edit redmine
```
Here you can update the MariaDB root password, Redmine admin username, password and email address in `tpl/values.toml`, the default values of which are:
Here you can update the MariaDB root password, Redmine admin username, password, email address and language in `tpl/values.toml`. When not specified, the default values are:
- `mariadbPassword`: `bitnami`
- `redmineUser`: `user`
- `redminePassword`: `bitnami`
- `redmineEmail`: `user@example.com`
- `redmineLanguage`: `en`
> Note:
>

View File

@@ -34,6 +34,8 @@ spec:
value: {{default "bitnami" .redminePassword}}
- name: REDMINE_EMAIL
value: {{default "user@example.com" .redmineEmail}}
- name: REDMINE_LANG
value: {{default "en" .redmineLanguage}}
ports:
- name: redmine-http
containerPort: 3000