diff --git a/docs/scaling.md b/docs/scaling.md index fab668d9..db041ef7 100644 --- a/docs/scaling.md +++ b/docs/scaling.md @@ -46,10 +46,12 @@ marked with a gear. | | `replicas.jitsiKeycloakAdapter` | :white_check_mark: | :gear: | | | `replicas.jvb ` | :x: | :x: | | Keycloak | `replicas.keycloak` | :white_check_mark: | :gear: | +| Memcached | `replicas.memcached` | :gear: | :gear: | | Minio | `replicas.minioDistributed` | :white_check_mark: | :white_check_mark: | | Nextcloud | `replicas.nextcloudApache2` | :white_check_mark: | :white_check_mark: | | | `replicas.nextcloudExporter` | :white_check_mark: | :white_check_mark: | | | `replicas.nextcloudPHP` | :white_check_mark: | :white_check_mark: | | OpenProject | `replicas.openproject` | :white_check_mark: | :white_check_mark: | | Postfix | `replicas.postfix` | :x: | :gear: | +| Redis | `replicas.redis` | :gear: | :gear: | | XWiki | `replicas.xwiki` | :x: | :gear: | diff --git a/helmfile/apps/services/values-mariadb.yaml b/helmfile/apps/services/values-mariadb.yaml index cf799955..99f40a2f 100644 --- a/helmfile/apps/services/values-mariadb.yaml +++ b/helmfile/apps/services/values-mariadb.yaml @@ -22,4 +22,6 @@ podSecurityContext: enabled: true fsGroup: 1001 fsGroupChangePolicy: "OnRootMismatch" + +replicaCount: 1 ... diff --git a/helmfile/apps/services/values-memcached.gotmpl b/helmfile/apps/services/values-memcached.gotmpl index 05fd02b7..36e81e61 100644 --- a/helmfile/apps/services/values-memcached.gotmpl +++ b/helmfile/apps/services/values-memcached.gotmpl @@ -13,6 +13,8 @@ image: tag: {{ .Values.images.memcached.tag | quote }} pullPolicy: {{ .Values.global.imagePullPolicy | quote }} +replicaCount: {{ .Values.replicas.memcached }} + resources: {{ .Values.resources.memcached | toYaml | nindent 2 }} ... diff --git a/helmfile/apps/services/values-postgresql.yaml b/helmfile/apps/services/values-postgresql.yaml index 0cf437c0..45dc5d3f 100644 --- a/helmfile/apps/services/values-postgresql.yaml +++ b/helmfile/apps/services/values-postgresql.yaml @@ -23,7 +23,8 @@ podSecurityContext: fsGroup: 1001 fsGroupChangePolicy: "OnRootMismatch" - postgres: user: "postgres" + +replicaCount: 1 ... diff --git a/helmfile/apps/services/values-redis.gotmpl b/helmfile/apps/services/values-redis.gotmpl index 77bd2686..68717792 100644 --- a/helmfile/apps/services/values-redis.gotmpl +++ b/helmfile/apps/services/values-redis.gotmpl @@ -18,6 +18,7 @@ image: pullPolicy: {{ .Values.global.imagePullPolicy | quote }} master: + count: {{ .Values.replicas.redis }} persistence: size: {{ .Values.persistence.size.redis | quote }}