Skip to content

Commit

Permalink
fixed
Browse files Browse the repository at this point in the history
Signed-off-by: mehul <[email protected]>
  • Loading branch information
hellspawn679 committed Nov 19, 2024
1 parent b2a3977 commit 7eabf48
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 11 deletions.
6 changes: 3 additions & 3 deletions charts/jaeger/templates/collector-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ spec:
name: http
protocol: TCP
- containerPort: 13133
name: admin
name: healthcheck
protocol: TCP
{{- if .Values.collector.service.zipkin }}
- containerPort: {{ .Values.collector.service.zipkin.port }}
Expand All @@ -145,12 +145,12 @@ spec:
readinessProbe:
httpGet:
path: /status
port: admin
port: healthcheck
scheme: HTTP
livenessProbe:
httpGet:
path: /status
port: admin
port: healthcheck
scheme: HTTP
resources:
{{- toYaml .Values.collector.resources | nindent 10 }}
Expand Down
2 changes: 1 addition & 1 deletion charts/jaeger/templates/collector-servicemonitor.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ metadata:
{{- end }}
spec:
endpoints:
- port: admin
- port: healthcheck
path: /metrics
{{- if .Values.collector.serviceMonitor.interval }}
interval: {{ .Values.collector.serviceMonitor.interval }}
Expand Down
4 changes: 2 additions & 2 deletions charts/jaeger/templates/es-configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@ data:
otlp:
protocols:
grpc:
endpoint:{{ .Values.config.receivers.otlp.protocols.grpc | indent 1 }}
endpoint:{{ .Values.config.receivers.otlp.protocols.endpoints.grpc | indent 1 }}
http:
endpoint:{{ .Values.config.receivers.otlp.protocols.http | indent 1 }}
endpoint:{{ .Values.config.receivers.otlp.protocols.endpoints.http | indent 1 }}
processors:
batch:
Expand Down
6 changes: 3 additions & 3 deletions charts/jaeger/templates/query-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ spec:
- name: grpc
containerPort: 16685
protocol: TCP
- name: admin
- name: healthcheck
containerPort: 13133
protocol: TCP
resources:
Expand Down Expand Up @@ -148,12 +148,12 @@ spec:
livenessProbe:
httpGet:
path: /status
port: admin
port: healthcheck
scheme: HTTP
readinessProbe:
httpGet:
path: /status
port: admin
port: healthcheck
scheme: HTTP
{{- if .Values.query.oAuthSidecar.enabled }}
- name: {{ template "jaeger.agent.name" . }}-oauth2-sidecar
Expand Down
6 changes: 4 additions & 2 deletions charts/jaeger/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,10 @@ config:
receivers:
otlp:
protocols:
grpc: 0.0.0.0:4317
http: 0.0.0.0:4318
grpc:
endpoint: 0.0.0.0:4317
http:
endpoint: 0.0.0.0:4318
jaeger:
protocols:
grpc:
Expand Down

0 comments on commit 7eabf48

Please sign in to comment.