Skip to content

Commit

Permalink
Resolve PEBCAK errors
Browse files Browse the repository at this point in the history
  • Loading branch information
DiamondJoseph committed Nov 18, 2024
1 parent ddaa336 commit 3771e51
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions helm/blueapi/templates/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ kind: ConfigMap
metadata:
name: {{ include "blueapi.fullname" . }}-otel-config
data:
{{ if .Values.tracing.otlp.enabled | default false }}
{{- if .Values.tracing.otlp.enabled | default false }}
OTLP_EXPORT_ENABLED: "true"
OTEL_EXPORTER_OTLP_TRACES_PROTOCOL: {{ .Values.tracing.otlp.protocol | default "http/protobuff" }}
OTEL_EXPORTER_OTLP_ENDPOINT: {{ required "OTLP export enabled but server address not set" .Values.tracing.otlp.server.host }}:{{ .Values.tracing.otlp.server.port | default 4138 }}
OTEL_EXPORTER_OTLP_TRACES_PROTOCOL: {{ .Values.tracing.otlp.protocol | default "http/protobuf" }}
OTEL_EXPORTER_OTLP_ENDPOINT: {{ required "OTLP export enabled but server address not set" .Values.tracing.otlp.server.host }}:{{ .Values.tracing.otlp.server.port | default 4318 }}
{{ end }}

0 comments on commit 3771e51

Please sign in to comment.