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

Commit

Permalink
keydb: handling args properly
Browse files Browse the repository at this point in the history
  • Loading branch information
Antiarchitect committed Apr 8, 2022
1 parent 1594d2d commit 763df5a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion 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 multimaster setup
type: application
version: 0.33.3
version: 0.33.4
keywords:
- keydb
- redis
Expand Down
8 changes: 6 additions & 2 deletions keydb/templates/sts.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -134,9 +134,13 @@ spec:
{{- if kindIs "invalid" $value }}
- --{{ $key }}
{{- else if kindIs "slice" $value }}
- --{{ $key }}{{ range $value }} {{ . | quote }}{{ end }}
- --{{ $key }}
{{- range $value }}
- {{ . | quote }}
{{- end }}
{{- else }}
- --{{ $key }} {{ $value | quote }}
- --{{ $key }}
- {{ $value | quote }}
{{- end }}
{{- end }}
{{- end }}
Expand Down

0 comments on commit 763df5a

Please sign in to comment.