File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ appVersion: 1.53.0
33description : A Jaeger Helm chart for Kubernetes
44name : jaeger
55type : application
6- version : 1.0.1
6+ version : 1.0.2
77# CronJobs require v1.21
88kubeVersion : " >= 1.21-0"
99keywords :
Original file line number Diff line number Diff line change @@ -12,21 +12,36 @@ spec:
1212 - name : http-zipkin
1313 port : 9411
1414 targetPort : 0
15+ {{- if semverCompare ">=1.20" .Capabilities.KubeVersion.Version }}
16+ appProtocol : http
17+ {{- end }}
1518 - name : grpc-http
1619 port : 14250
1720 targetPort : 0
21+ {{- if semverCompare ">=1.20" .Capabilities.KubeVersion.Version }}
22+ appProtocol : grpc
23+ {{- end }}
1824 - name : c-tchan-trft
1925 port : 14267
2026 targetPort : 0
2127 - name : http-c-binary-trft
2228 port : 14268
2329 targetPort : 0
30+ {{- if semverCompare ">=1.20" .Capabilities.KubeVersion.Version }}
31+ appProtocol : http
32+ {{- end }}
2433 - name : {{ .Values.allInOne.service.collector.otlp.grpc.name }}
2534 port : 4317
2635 targetPort : 0
36+ {{- if semverCompare ">=1.20" .Capabilities.KubeVersion.Version }}
37+ appProtocol : grpc
38+ {{- end }}
2739 - name : {{ .Values.allInOne.service.collector.otlp.http.name }}
2840 port : 4318
2941 targetPort : 0
42+ {{- if semverCompare ">=1.20" .Capabilities.KubeVersion.Version }}
43+ appProtocol : http
44+ {{- end }}
3045 selector :
3146 {{- include "jaeger.selectorLabels" . | nindent 4 }}
3247 app.kubernetes.io/component : all-in-one
Original file line number Diff line number Diff line change @@ -19,13 +19,19 @@ spec:
1919{{- end }}
2020 protocol : TCP
2121 targetPort : grpc
22+ {{- if semverCompare ">=1.20" .Capabilities.KubeVersion.Version }}
23+ appProtocol : grpc
24+ {{- end }}
2225 - name : http
2326 port : {{ .Values.collector.service.http.port }}
2427{{- if and (eq .Values.collector.service.type "NodePort") (.Values.collector.service.http.nodePort) }}
2528 nodePort : {{ .Values.collector.service.http.nodePort }}
2629{{- end }}
2730 protocol : TCP
2831 targetPort : http
32+ {{- if semverCompare ">=1.20" .Capabilities.KubeVersion.Version }}
33+ appProtocol : http
34+ {{- end }}
2935{{- if .Values.collector.service.zipkin }}
3036 - name : zipkin
3137 port : {{ .Values.collector.service.zipkin.port }}
3440{{- end }}
3541 protocol : TCP
3642 targetPort : zipkin
43+ {{- if semverCompare ">=1.20" .Capabilities.KubeVersion.Version }}
44+ appProtocol : http
45+ {{- end }}
3746{{- end }}
3847{{- if or .Values.collector.service.otlp.grpc .Values.collector.service.otlp.http }}
3948 - name : {{ .Values.collector.service.otlp.grpc.name }}
You can’t perform that action at this time.
0 commit comments