Skip to content

Commit 7a72deb

Browse files
Merge pull request #330 from devtron-labs/otl
chore: Adding support for resource configuration in Jaeger
2 parents 8333583 + cd01fc4 commit 7a72deb

File tree

3 files changed

+17
-3
lines changed

3 files changed

+17
-3
lines changed

charts/jaeger-opentelemetry/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 0.1.0
18+
version: 0.1.1
1919

2020
# This is the version number of the application being deployed. This version number should be
2121
# incremented each time you make changes to the application. Versions are not expected to
2222
# follow Semantic Versioning. They should reflect the version the application is using.
2323
# It is recommended to use it with quotes.
24-
appVersion: "1.16.0"
24+
appVersion: "1.16.1"

charts/jaeger-opentelemetry/templates/StatefulSet.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,13 @@ spec:
1919
containers:
2020
- image: {{ .Values.jaeger.image }}
2121
name: jaeger
22+
resources:
23+
limits:
24+
cpu: {{ .Values.jaeger.resource.limit.cpu }}
25+
memory: {{ .Values.jaeger.resource.limit.memory }}
26+
requests:
27+
cpu: {{ .Values.jaeger.resource.request.cpu }}
28+
memory: {{ .Values.jaeger.resource.request.memory }}
2229
ports:
2330
{{- range $port := .Values.jaeger.ports }}
2431
- containerPort: {{ $port }}

charts/jaeger-opentelemetry/values.yaml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,14 @@ jaeger_query_ports:
9595
#StatefulSet-jaeger all in one
9696
jaeger:
9797
replicas: "1"
98-
image: jaegertracing/all-in-one:latest
98+
image:
99+
resource:
100+
limit:
101+
cpu: "1"
102+
memory: 1Gi
103+
request:
104+
cpu: 200m
105+
memory: 400Mi
99106
storage: "10Gi"
100107
ports:
101108
containerPort1: "16686"

0 commit comments

Comments
 (0)