Skip to content

Commit e81ae35

Browse files
committed
chart/template: Fix tracing endpoint variable
Signed-off-by: ArthurSens <[email protected]>
1 parent 8ff6142 commit e81ae35

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.werft/values.dev.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ imagePullPolicy: Always
1313

1414
authProviders: []
1515
tracing:
16-
endoint: http://otel-collector:14268/api/traces
16+
endpoint: http://otel-collector:14268/api/traces
1717
samplerType: const
1818
samplerParam: "1"
1919

chart/templates/_helpers.tpl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -259,9 +259,9 @@ env:
259259
{{- $comp := .comp -}}
260260
{{- $tracing := $comp.tracing | default $gp.tracing -}}
261261
{{- if $tracing }}
262-
{{- if $tracing.endoint }}
262+
{{- if $tracing.endpoint }}
263263
- name: JAEGER_ENDPOINT
264-
value: {{ $tracing.endoint }}
264+
value: {{ $tracing.endpoint }}
265265
{{- else }}
266266
- name: JAEGER_AGENT_HOST
267267
valueFrom:

0 commit comments

Comments
 (0)