[stable/redmine] Fix some typos (#4212)

* [stable/ghost] Fix some typos

* [stable/redmine] Fix some typos

* Revert "[stable/ghost] Fix some typos"

This reverts commit fe3bc14a3e.

* Update README.md

Another typo (replace tables by table)
This commit is contained in:
Carlos Rodríguez Hernández
2018-03-19 21:18:00 -07:00
committed by k8s-ci-robot
parent af19d5fbc2
commit e2a8ce3e09
2 changed files with 5 additions and 6 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
name: redmine
version: 2.0.5
version: 2.0.6
appVersion: 3.4.4
description: A flexible project management web application.
keywords:
+4 -5
View File
@@ -51,7 +51,7 @@ helm install --name my-release stable/redmine --set databaseType.mariadb=false,d
## Configuration
The following tables lists the configurable parameters of the Redmine chart and their default values.
The following table lists the configurable parameters of the Redmine chart and their default values.
| Parameter | Description | Default |
| --------- | ----------- | ------- |
@@ -95,7 +95,7 @@ $ helm install --name my-release \
stable/redmine
```
The above command sets the Redmine administrator account username and password to `admin` and `password` respectively. Additionally it sets the MariaDB `root` user password to `secretpassword`.
The above command sets the Redmine administrator account username and password to `admin` and `password` respectively. Additionally, it sets the MariaDB `root` user password to `secretpassword`.
Alternatively, a YAML file that specifies the values for the above parameters can be provided while installing the chart. For example,
@@ -113,16 +113,15 @@ Persistent Volume Claims are used to keep the data across deployments. This is k
See the [Configuration](#configuration) section to configure the PVC or to disable persistence.
### Existing PersistentVolumeClaims
The following example includes two PVCs, one for redmine and another for Maria DB.
The following example includes two PVCs, one for Redmine and another for MariaDB.
1. Create the PersistentVolume
1. Create the PersistentVolumeClaim
1. Create the directory, on a worker
1. Install the chart
```bash
$ helm install --name test --set persistence.existingClaim=PVC_REDMINE,mariadb.persistence.existingClaim=PVC_MARIADB redmine
```