Skip to content

Commit 5ea264b

Browse files
committed
correct DEBUG_ON env value
1 parent 70ae3d4 commit 5ea264b

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

helm/blueapi/templates/configmap.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,10 @@ data:
1717
OTLP_EXPORT_ENABLED: "true"
1818
OTEL_EXPORTER_OTLP_TRACES_PROTOCOL: {{ .Values.tracing.otlp.protocol | default "http/protobuf" }}
1919
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 }}
20+
OTEL_PYTHON_FASTAPI_EXCLUDED_URLS: {{ .Values.tracing.fastapi.excludedURLs | default "" }}
2021
{{ end }}
2122

22-
OTEL_PYTHON_FASTAPI_EXCLUDED_URLS: {{ .Values.tracing.fastapi.excludedURLs | default "/healthz" }}
23+
2324

2425
---
2526

helm/blueapi/templates/statefulset.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ spec:
204204
value: {{ (.Values.worker.scratch).root }}/.uv-cache
205205
{{- if .Values.debug.enabled }}
206206
- name: DEBUG_MODE
207-
value: ON
207+
value: "ON"
208208
{{- end }}
209209
{{- if .Values.extraEnvVars }}
210210
{{- toYaml .Values.extraEnvVars | nindent 12 }}

0 commit comments

Comments
 (0)