Skip to content

Commit 2451a04

Browse files
bootcLeoColomb
authored andcommitted
Fix using external sentinels
1 parent 92996ee commit 2451a04

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

charts/netbox/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
apiVersion: v2
22
name: netbox
3-
version: 6.1.10
3+
version: 6.1.11
44
# renovate: image=ghcr.io/netbox-community/netbox
55
appVersion: "v4.3.6"
66
type: application

charts/netbox/templates/_helpers.tpl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ Tasks Sentinel: use .Values.tasksDatabase.sentinels if defined. When using embed
127127
*/}}
128128
{{- define "netbox.tasksDatabase.sentinels" -}}
129129
{{- if .Values.tasksDatabase.sentinels }}
130-
{{- .Values.tasksDatabase.sentinels }}
130+
{{- toJson .Values.tasksDatabase.sentinels }}
131131
{{- else if and .Values.valkey.enabled .Values.valkey.sentinel.enabled }}
132132
{{- include "netbox.valkey.managedSentinels" . }}
133133
{{- end }}
@@ -138,7 +138,7 @@ Caching Sentinel: use .Values.cachingDatabase.sentinels if defined. When using e
138138
*/}}
139139
{{- define "netbox.cachingDatabase.sentinels" -}}
140140
{{- if .Values.cachingDatabase.sentinels }}
141-
{{- .Values.cachingDatabase.sentinels }}
141+
{{- toJson .Values.cachingDatabase.sentinels }}
142142
{{- else if and .Values.valkey.enabled .Values.valkey.sentinel.enabled }}
143143
{{- include "netbox.valkey.managedSentinels" . }}
144144
{{- end }}

0 commit comments

Comments
 (0)