Skip to content

Commit

Permalink
chart/template: Fix tracing endpoint variable
Browse files Browse the repository at this point in the history
Signed-off-by: ArthurSens <[email protected]>
  • Loading branch information
ArthurSens authored and roboquat committed Nov 29, 2021
1 parent 3a965de commit 9751e42
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .werft/values.dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ imagePullPolicy: Always

authProviders: []
tracing:
endoint: http://otel-collector:14268/api/traces
endpoint: http://otel-collector:14268/api/traces
samplerType: const
samplerParam: "1"

Expand Down
4 changes: 2 additions & 2 deletions chart/templates/_helpers.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -259,9 +259,9 @@ env:
{{- $comp := .comp -}}
{{- $tracing := $comp.tracing | default $gp.tracing -}}
{{- if $tracing }}
{{- if $tracing.endoint }}
{{- if $tracing.endpoint }}
- name: JAEGER_ENDPOINT
value: {{ $tracing.endoint }}
value: {{ $tracing.endpoint }}
{{- else }}
- name: JAEGER_AGENT_HOST
valueFrom:
Expand Down

0 comments on commit 9751e42

Please sign in to comment.