Skip to content

Commit

Permalink
Merge pull request #453 from mjdazz/main
Browse files Browse the repository at this point in the history
Don't set redis pw when redis auth is disabled
  • Loading branch information
provokateurin authored Oct 17, 2023
2 parents 13a08df + 7efae2c commit 0933222
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion charts/nextcloud/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v2
name: nextcloud
version: 4.3.4
version: 4.3.5
appVersion: 27.1.2
description: A file sharing server that puts the control and security of your own data back into your hands.
keywords:
Expand Down
2 changes: 2 additions & 0 deletions charts/nextcloud/templates/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,9 @@ data:
'redis' => array(
'host' => getenv('REDIS_HOST'),
'port' => getenv('REDIS_HOST_PORT') ?: 6379,
{{- if .Values.redis.auth.enabled }}
'password' => getenv('REDIS_HOST_PASSWORD'),
{{- end }}
),
);
}
Expand Down

0 comments on commit 0933222

Please sign in to comment.