File tree Expand file tree Collapse file tree 3 files changed +17
-3
lines changed
charts/jaeger-opentelemetry Expand file tree Collapse file tree 3 files changed +17
-3
lines changed Original file line number Diff line number Diff 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 "
Original file line number Diff line number Diff line change 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 }}
Original file line number Diff line number Diff line change @@ -95,7 +95,14 @@ jaeger_query_ports:
9595# StatefulSet-jaeger all in one
9696jaeger :
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"
You can’t perform that action at this time.
0 commit comments