File tree 3 files changed +10
-1
lines changed
charts/opentelemetry-collector
3 files changed +10
-1
lines changed Original file line number Diff line number Diff line change 1
1
apiVersion : v2
2
2
name : opentelemetry-collector
3
- version : 0.5.6
3
+ version : 0.5.7
4
4
description : OpenTelemetry Collector Helm chart for Kubernetes
5
5
type : application
6
6
home : https://opentelemetry.io/
Original file line number Diff line number Diff line change @@ -85,6 +85,9 @@ containers:
85
85
mountPath: /var/lib/docker/containers
86
86
readOnly: true
87
87
{ {- end } }
88
+ { {- if .Values.priorityClassName } }
89
+ priorityClassName: { { .Values.priorityClassName | quote } }
90
+ { {- end } }
88
91
volumes:
89
92
- name: { { .Chart.Name } }-configmap
90
93
configMap:
Original file line number Diff line number Diff line change @@ -99,6 +99,10 @@ nodeSelector: {}
99
99
tolerations : []
100
100
affinity : {}
101
101
102
+ # Allows for pod scheduler prioritisation
103
+ # Can be overridden here or for agentCollector and standaloneCollector independently.
104
+ priorityClassName : " "
105
+
102
106
extraEnvs : []
103
107
extraConfigMapMounts : []
104
108
extraHostPathMounts : []
@@ -170,6 +174,7 @@ agentCollector:
170
174
# nodeSelector: {}
171
175
# tolerations: []
172
176
# affinity: {}
177
+ # priorityClassName: ""
173
178
174
179
# The following option overrides can be used with host receiver
175
180
# extraEnvs:
@@ -227,6 +232,7 @@ standaloneCollector:
227
232
# nodeSelector: {}
228
233
# tolerations: []
229
234
# affinity: {}
235
+ # priorityClassName: ""
230
236
# ports: {}
231
237
232
238
service :
You can’t perform that action at this time.
0 commit comments