Skip to content

Commit b06ec01

Browse files
fix: memberlist join configuration
1 parent 311d3b4 commit b06ec01

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

charts/tempo-distributed/values.yaml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1287,7 +1287,7 @@ memberlist:
12871287
bind_port: 7946
12881288
packet_dial_timeout: "5s"
12891289
packet_write_timeout: "5s"
1290-
join_members: ""
1290+
join_members: null
12911291

12921292
# -- Config file contents for Tempo distributed. Passed through the `tpl` function to allow templating
12931293

@@ -1546,10 +1546,7 @@ config: |
15461546
{{- with .Values.memberlist }}
15471547
{{- toYaml . | nindent 2 }}
15481548
{{- end }}
1549-
{{- if .Values.memberlist.join_members }}
1550-
join_members:
1551-
- {{ .Values.memberlist.join_members }}
1552-
{{- else }}
1549+
{{- if eq .Values.memberlist.join_members nil }}
15531550
join_members:
15541551
- dns+{{ include "tempo.fullname" . }}-gossip-ring:{{ .Values.memberlist.bind_port }}
15551552
{{- end }}

0 commit comments

Comments
 (0)