Fix a bug in the definition of the helm application example (#650)
* Fix a bug in the definition of the helm application example Signed-off-by: Carmendelope <carmen@napptive.com> * restore version-1.3 helm file and update the latest one Signed-off-by: Carmendelope <carmen@napptive.com>
This commit is contained in:
parent
af83643ff0
commit
8cfba6a3e8
|
@ -35,7 +35,7 @@ When the addon is `enabled`, it means that it's ready to. You can start to deplo
|
|||
You can also enable the addon via CLI:
|
||||
|
||||
```shell
|
||||
vale addon enable fluxcd
|
||||
vela addon enable fluxcd
|
||||
```
|
||||
|
||||
## Creating Redis application
|
||||
|
@ -79,8 +79,12 @@ spec:
|
|||
chart: "redis"
|
||||
version: "16.8.5"
|
||||
values:
|
||||
master.persistence.size: 16Gi
|
||||
replica.persistence.size: 16Gi
|
||||
master:
|
||||
persistence:
|
||||
size: 16Gi
|
||||
replica:
|
||||
persistence:
|
||||
size: 16Gi
|
||||
```
|
||||
|
||||
Deploy this application:
|
||||
|
|
Loading…
Reference in New Issue