mirror of
https://github.com/penpot/penpot-helm.git
synced 2025-04-07 20:31:25 -05:00
feat: change default Redis architecture to standalone
This commit is contained in:
parent
1ac196d1fa
commit
e370c76e28
3 changed files with 9 additions and 0 deletions
|
@ -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:
|
||||
|
|
|
@ -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) |
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue