Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 6 additions & 10 deletions base/monitoring/jaeger/jaeger-collector.Service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,14 @@ metadata:
app.kubernetes.io/name: jaeger
spec:
ports:
- name: jaeger-collector-tchannel
port: 14267
- name: http-otlp
port: 4318
protocol: TCP
targetPort: 14267
- name: jaeger-collector-http
port: 4321
targetPort: http-otlp
- name: grpc-otlp
port: 4317
protocol: TCP
targetPort: 4321
- name: jaeger-collector-grpc
port: 4320
protocol: TCP
targetPort: 4320
targetPort: grpc-otlp
selector:
app.kubernetes.io/name: jaeger
app.kubernetes.io/component: all-in-one
Expand Down
22 changes: 11 additions & 11 deletions base/monitoring/jaeger/jaeger.Deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,26 +31,26 @@ spec:
containers:
- name: jaeger
image: index.docker.io/sourcegraph/jaeger-all-in-one:6.2.1106@sha256:c1ee8d613be75032066a9da24f54ebae19eacb63e42338e920abd6383ce168a6
args: ["--memory.max-traces=20000", "--sampling.strategies-file=/etc/jaeger/sampling_strategies.json", "--collector.otlp.enabled"]
args: ["--config=/etc/jaeger/jaeger-config.yaml"]
ports:
- containerPort: 5775
protocol: UDP
- containerPort: 6831
protocol: UDP
- containerPort: 6832
protocol: UDP
- containerPort: 5778
protocol: TCP
- containerPort: 16686
name: http
protocol: TCP
- containerPort: 4320
- containerPort: 4317
name: grpc-otlp
protocol: TCP
- containerPort: 4321
- containerPort: 4318
name: http-otlp
protocol: TCP
- containerPort: 13133
name: health
protocol: TCP
readinessProbe:
httpGet:
path: "/"
port: 14269
path: "/status"
port: 13133
initialDelaySeconds: 5
resources:
limits:
Expand Down
Loading