Skip to content

Commit

Permalink
#1731 use tpl function for otelExporterOtlpEndpoint value
Browse files Browse the repository at this point in the history
  • Loading branch information
calohmn committed Sep 8, 2023
1 parent d304c4f commit 2c09ffa
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion deployment/helm/ditto/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ description: |
A digital twin is a virtual, cloud based, representation of his real world counterpart
(real world “Things”, e.g. devices like sensors, smart heating, connected cars, smart grids, EV charging stations etc).
type: application
version: 3.3.8 # chart version is effectively set by release-job
version: 3.3.9 # chart version is effectively set by release-job
appVersion: 3.3.6
keywords:
- iot-chart
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ spec:
- name: DITTO_TRACING_ENABLED
value: "{{ .Values.global.tracing.enabled }}"
- name: OTEL_EXPORTER_OTLP_ENDPOINT
value: "{{ .Values.global.tracing.otelExporterOtlpEndpoint }}"
value: "{{ tpl .Values.global.tracing.otelExporterOtlpEndpoint . }}"
- name: DITTO_TRACING_SAMPLER
value: "{{ .Values.global.tracing.sampler }}"
- name: DITTO_TRACING_RANDOM_SAMPLER_PROBABILITY
Expand Down
2 changes: 1 addition & 1 deletion deployment/helm/ditto/templates/gateway-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ spec:
- name: DITTO_TRACING_ENABLED
value: "{{ .Values.global.tracing.enabled }}"
- name: OTEL_EXPORTER_OTLP_ENDPOINT
value: "{{ .Values.global.tracing.otelExporterOtlpEndpoint }}"
value: "{{ tpl .Values.global.tracing.otelExporterOtlpEndpoint . }}"
- name: DITTO_TRACING_SAMPLER
value: "{{ .Values.global.tracing.sampler }}"
- name: DITTO_TRACING_RANDOM_SAMPLER_PROBABILITY
Expand Down
2 changes: 1 addition & 1 deletion deployment/helm/ditto/templates/policies-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ spec:
- name: DITTO_TRACING_ENABLED
value: "{{ .Values.global.tracing.enabled }}"
- name: OTEL_EXPORTER_OTLP_ENDPOINT
value: "{{ .Values.global.tracing.otelExporterOtlpEndpoint }}"
value: "{{ tpl .Values.global.tracing.otelExporterOtlpEndpoint . }}"
- name: DITTO_TRACING_SAMPLER
value: "{{ .Values.global.tracing.sampler }}"
- name: DITTO_TRACING_RANDOM_SAMPLER_PROBABILITY
Expand Down
2 changes: 1 addition & 1 deletion deployment/helm/ditto/templates/things-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ spec:
- name: DITTO_TRACING_ENABLED
value: "{{ .Values.global.tracing.enabled }}"
- name: OTEL_EXPORTER_OTLP_ENDPOINT
value: "{{ .Values.global.tracing.otelExporterOtlpEndpoint }}"
value: "{{ tpl .Values.global.tracing.otelExporterOtlpEndpoint . }}"
- name: DITTO_TRACING_SAMPLER
value: "{{ .Values.global.tracing.sampler }}"
- name: DITTO_TRACING_RANDOM_SAMPLER_PROBABILITY
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ spec:
- name: DITTO_TRACING_ENABLED
value: "{{ .Values.global.tracing.enabled }}"
- name: OTEL_EXPORTER_OTLP_ENDPOINT
value: "{{ .Values.global.tracing.otelExporterOtlpEndpoint }}"
value: "{{ tpl .Values.global.tracing.otelExporterOtlpEndpoint . }}"
- name: DITTO_TRACING_SAMPLER
value: "{{ .Values.global.tracing.sampler }}"
- name: DITTO_TRACING_RANDOM_SAMPLER_PROBABILITY
Expand Down

0 comments on commit 2c09ffa

Please sign in to comment.