Skip to content

Commit

Permalink
Merge pull request #5 from fniko/rngcntr-allow-extra-volume-mounts
Browse files Browse the repository at this point in the history
Rngcntr allow extra volume mounts
  • Loading branch information
fniko authored Apr 3, 2024
2 parents 2aad13c + be3ad32 commit 3a05655
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion charts/keydb/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: keydb
description: A Helm chart for KeyDB
type: application
version: 1.0.4
version: 1.0.5
keywords:
- keydb
- redis
Expand Down
3 changes: 3 additions & 0 deletions charts/keydb/templates/statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,9 @@ spec:
- name: utils
mountPath: /utils
readOnly: true
{{- if .Values.extraVolumeMounts }}
{{- toYaml .Values.extraVolumeMounts | nindent 8 }}
{{- end }}
{{- if .Values.exporter.enabled }}
- name: redis-exporter
{{- if .Values.exporter.image }}
Expand Down
5 changes: 5 additions & 0 deletions charts/keydb/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,11 @@ extraVolumes: []
# - name: empty-dir-volume
# emptyDir: {}

# Mount points for the declared extraVolumes
extraVolumeMounts: []
# - name: empty-dir-volume
# mountPath: /tmp

# Liveness Probe
livenessProbe:
enabled: true
Expand Down

0 comments on commit 3a05655

Please sign in to comment.