diff --git a/charts/penpot/Chart.yaml b/charts/penpot/Chart.yaml index a01c574..fbfcf99 100644 --- a/charts/penpot/Chart.yaml +++ b/charts/penpot/Chart.yaml @@ -56,6 +56,11 @@ annotations: links: - name: GitHub PR 18 url: https://github.com/penpot/penpot-helm/pull/18 + - kind: changed + description: The default Redis architecture will be standalone instead of replication + links: + - name: GitHub Issue 23 + url: https://github.com/penpot/penpot-helm/issues/23 - kind: fixed description: Fix issue with default value for PENPOT_LDAP_BIND_DN. Thanks to @jdollar links: diff --git a/charts/penpot/README.md b/charts/penpot/README.md index b4664c2..d2a08ec 100644 --- a/charts/penpot/README.md +++ b/charts/penpot/README.md @@ -292,6 +292,7 @@ helm install my-release -f values.yaml penpot/penpot | Key | Type | Default | Description | |-----|------|---------|-------------| +| redis.architecture | string | `"standalone"` | Redis® architecture. Allowed values: `standalone` or `replication`. Penpot only needs a standalone Redis® StatefulSet. Check for [more info here](https://artifacthub.io/packages/helm/bitnami/redis#cluster-topologies) | | redis.auth.enabled | bool | `false` | Whether to enable password authentication. | | redis.global.compatibility.openshift.adaptSecurityContext | string | `"auto"` | Adapt the securityContext sections of the deployment to make them compatible with Openshift restricted-v2 SCC: remove runAsUser, runAsGroup and fsGroup and let the platform use their allowed default IDs. Possible values: auto (apply if the detected running cluster is Openshift), force (perform the adaptation always), disabled (do not perform adaptation) | diff --git a/charts/penpot/values.yaml b/charts/penpot/values.yaml index 022a232..286c195 100644 --- a/charts/penpot/values.yaml +++ b/charts/penpot/values.yaml @@ -711,3 +711,6 @@ redis: # -- Whether to enable password authentication. # @section -- Redis Dependencie parameters enabled: false + # -- Redis® architecture. Allowed values: `standalone` or `replication`. Penpot only needs a standalone Redis® StatefulSet. Check for [more info here](https://artifacthub.io/packages/helm/bitnami/redis#cluster-topologies) + # @section -- Redis Dependencie parameters + architecture: standalone