File tree Expand file tree Collapse file tree 4 files changed +36
-7
lines changed Expand file tree Collapse file tree 4 files changed +36
-7
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -10,4 +10,4 @@ name: tracetest
10
10
sources :
11
11
- https://github.com/kubeshop/helm-charts/tree/main/charts
12
12
type : application
13
- version : 1.0.0
13
+ version : 1.0.1
Original file line number Diff line number Diff line change
1
+ {{- if .Values.otelCollector.ingressRoute.enabled -}}
2
+ apiVersion : traefik.containo.us/v1alpha1
3
+ kind : IngressRoute
4
+ metadata :
5
+ name : {{ include "tracetest.fullname" . }}-otel-collector
6
+ {{- with .Values.otelCollector.ingressRoute.annotations }}
7
+ annotations :
8
+ {{- toYaml . | nindent 4 }}
9
+ {{- end }}
10
+ spec :
11
+ entryPoints :
12
+ - web
13
+ routes :
14
+ - kind : Rule
15
+ match : Host(`{{ .Values.otelCollector.ingressRoute.host }}`)
16
+ services :
17
+ - name : {{ include "tracetest.fullname" . }}-otel-collector
18
+ port : {{ .Values.otelCollector.ingressRoute.service.port }}
19
+ scheme : h2c
20
+ {{- if .Values.otelCollector.ingressRoute.tls }}
21
+ tls :
22
+ {{- range .Values.otelCollector.ingressRoute.tls }}
23
+ secretName : {{ .secretName }}
24
+ {{- end }}
25
+ {{- end }}
26
+ {{- end }}
Original file line number Diff line number Diff line change @@ -237,6 +237,15 @@ otelCollector:
237
237
# -- Protocol to use for OTLP HTTP
238
238
protocol : TCP
239
239
240
+ ingressRoute :
241
+ enabled : false
242
+ annotations : {}
243
+ host : " otelcollector.domain.com"
244
+ service :
245
+ port : 4317
246
+ tls : []
247
+ # - secretName: chart-example-tls
248
+
240
249
ingress :
241
250
# -- Enable ingress for OtelCollector
242
251
enabled : false
You can’t perform that action at this time.
0 commit comments