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

Commit

Permalink
keydb: fix empty string as nil
Browse files Browse the repository at this point in the history
  • Loading branch information
Antiarchitect committed Sep 19, 2021
1 parent bf4dcf4 commit 1488cdd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 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.25.0
version: 0.25.1
keywords:
- keydb
- redis
Expand Down
2 changes: 1 addition & 1 deletion keydb/templates/secret-utils.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ stringData:
--requirepass {{ .Values.password | quote }} \
{{- end }}
{{- range $key, $value := .Values.configExtraArgs }}
{{- if $value }}
{{- if not (kindIs "invalid" $value }}
--{{ $key }} {{ $value | quote }} \
{{- else }}
--{{ $key }} \
Expand Down

0 comments on commit 1488cdd

Please sign in to comment.