fix(docs): Add GitOps / Argo CD documentation

This commit is contained in:
Thorsten Roßner
2024-10-16 08:17:26 +02:00
parent a9c8dfeab1
commit bbe7550c46
7 changed files with 84 additions and 25 deletions

View File

@@ -240,17 +240,7 @@ cluster:
```
### Volumes
When your cluster has a `ReadWriteMany` volume provisioner, you can benefit from the distribution or scaling of apps. By
default, only `ReadWriteOnce` is enabled. To enable `ReadWriteMany` you can set:
```yaml
cluster:
persistence:
readWriteMany: true
```
The **StorageClass** can be set by:
The **StorageClass** must be set by:
```yaml
persistence:
@@ -259,6 +249,18 @@ persistence:
RWO: "my-read-write-once-class"
```
`RWX` is optional and requires that your cluster has a `ReadWriteMany` volume provisioner. If you can make use
of it it benefits the distribution or scaling of apps. By default, only `ReadWriteOnce` is enabled.
To enable `ReadWriteMany` you have to set:
```yaml
cluster:
persistence:
readWriteMany: true
```
## Connectivity
### Ports