Skip to content
This repository was archived by the owner on Jun 6, 2023. It is now read-only.

Commit 302feb8

Browse files
committed
Allow extraVolumeMounts
1 parent df004fb commit 302feb8

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

keydb/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v2
22
name: keydb
33
description: A Helm chart for KeyDB multimaster setup
44
type: application
5-
version: 0.48.0
5+
version: 0.49.0
66
keywords:
77
- keydb
88
- redis

keydb/templates/sts.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,9 @@ spec:
130130
- name: utils
131131
mountPath: /utils
132132
readOnly: true
133+
{{- if .Values.extraVolumeMounts }}
134+
{{- toYaml .Values.extraVolumeMounts | nindent 8 }}
135+
{{- end }}
133136
{{- if .Values.exporter.enabled }}
134137
- name: redis-exporter
135138
{{- if .Values.exporter.image }}

keydb/values.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,11 @@ extraVolumes: []
9797
# - name: empty-dir-volume
9898
# emptyDir: {}
9999

100+
# Mount points for the declared extraVolumes
101+
extraVolumeMounts: []
102+
# - name: empty-dir-volume
103+
# mountPath: /tmp
104+
100105
# Liveness Probe
101106
livenessProbe:
102107
enabled: true

0 commit comments

Comments
 (0)