Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions charts/redis-replication/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
apiVersion: v2
name: redis-replication
description: Provides easy redis setup definitions for Kubernetes services, and deployment.
version: 0.17.0
appVersion: "0.17.0"
version: 0.17.1
appVersion: "0.17.1"
type: application
engine: gotpl
maintainers:
Expand Down
4 changes: 4 additions & 0 deletions charts/redis-replication/templates/redis-replication.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -125,8 +125,12 @@ spec:
{{- if .Values.pdb.enabled }}
pdb:
enabled: {{ .Values.pdb.enabled }}
{{- if .Values.pdb.minAvailable }}
minAvailable: {{ .Values.pdb.minAvailable }}
{{- end }}
{{- if .Values.pdb.maxUnavailable }}
maxUnavailable: {{ .Values.pdb.maxUnavailable }}
{{- end }}
{{- end }}
{{- if .Values.sentinel.enabled }}
sentinel:
Expand Down
2 changes: 2 additions & 0 deletions charts/redis-replication/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,9 @@ env: []

pdb:
enabled: false
# Mutually exclusive with `maxUnavailable`
minAvailable: 1
# Mutually exclusive with `minAvailable`
maxUnavailable: null

# -- Sentinel configuration for automatic failover.
Expand Down
Loading