Skip to content

Commit cd3fcc1

Browse files
committed
Fix forward configuration schema compatibility
- Update configmap.yaml to use 'forward.type' instead of deprecated 'forward.json' - Update values.yaml field name from 'json' to 'type' - Aligns with current Traccar configuration specification Fixes #32
1 parent c41fde8 commit cd3fcc1

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

charts/traccar/templates/configmap.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -260,8 +260,8 @@ data:
260260
{{- if .Values.traccar.forward.url }}
261261
<entry key='forward.url'>{{ .Values.traccar.forward.url }}</entry>
262262
{{- end }}
263-
{{- if .Values.traccar.forward.json }}
264-
<entry key='forward.json'>{{ .Values.traccar.forward.json }}</entry>
263+
{{- if .Values.traccar.forward.type }}
264+
<entry key='forward.type'>{{ .Values.traccar.forward.type }}</entry>
265265
{{- end }}
266266
{{- end }}
267267
{{- end }}

charts/traccar/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ traccar:
8989
# lookupGroupsAttribute:
9090
# forward:
9191
# url:
92-
# json:
92+
# type:
9393
# mail:
9494
# templates:
9595
# report:

0 commit comments

Comments
 (0)