Skip to content

Commit 7197897

Browse files
authored
Merge branch 'main' into fix/demo-scripts-report-success-without-checking
2 parents 8c40250 + c9c73b5 commit 7197897

43 files changed

Lines changed: 351 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

distros/kubernetes/nvsentinel/charts/csp-health-monitor/templates/deployment.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -268,3 +268,6 @@ spec:
268268
tolerations:
269269
{{- toYaml . | nindent 8 }}
270270
{{- end }}
271+
{{- with (((.Values.global).systemPriorityClassName) | default .Values.priorityClassName) }}
272+
priorityClassName: {{ . | quote }}
273+
{{- end }}

distros/kubernetes/nvsentinel/charts/csp-health-monitor/values.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,9 @@ quarantineTriggerEngine:
4545
# Scheduling configuration
4646
nodeSelector: {}
4747
affinity: {}
48+
# Pod priority for this component. Overridden by the matching global when that is set.
49+
priorityClassName: ""
50+
4851
tolerations: []
4952

5053
podAnnotations: {}

distros/kubernetes/nvsentinel/charts/event-exporter/templates/deployment.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -190,3 +190,6 @@ spec:
190190
tolerations:
191191
{{- toYaml . | nindent 8 }}
192192
{{- end }}
193+
{{- with (.Values.global.systemPriorityClassName | default .Values.priorityClassName) }}
194+
priorityClassName: {{ . | quote }}
195+
{{- end }}

distros/kubernetes/nvsentinel/charts/event-exporter/values.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,3 +92,5 @@ exporter:
9292
maxBackoff: "5m"
9393
backoffMultiplier: 2.0
9494

95+
# Pod priority for this component. Overridden by the matching global when that is set.
96+
priorityClassName: ""

distros/kubernetes/nvsentinel/charts/fault-quarantine/templates/deployment.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -210,3 +210,6 @@ spec:
210210
tolerations:
211211
{{- toYaml . | nindent 8 }}
212212
{{- end }}
213+
{{- with (((.Values.global).systemPriorityClassName) | default .Values.priorityClassName) }}
214+
priorityClassName: {{ . | quote }}
215+
{{- end }}

distros/kubernetes/nvsentinel/charts/fault-quarantine/values.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,9 @@ resources:
3030
# Scheduling configuration
3131
nodeSelector: {}
3232
affinity: {}
33+
# Pod priority for this component. Overridden by the matching global when that is set.
34+
priorityClassName: ""
35+
3336
tolerations: []
3437

3538
podAnnotations: {}

distros/kubernetes/nvsentinel/charts/fault-remediation/templates/deployment.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -203,3 +203,6 @@ spec:
203203
tolerations:
204204
{{- toYaml . | nindent 8 }}
205205
{{- end }}
206+
{{- with (((.Values.global).systemPriorityClassName) | default .Values.priorityClassName) }}
207+
priorityClassName: {{ . | quote }}
208+
{{- end }}

distros/kubernetes/nvsentinel/charts/fault-remediation/values.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,9 @@ affinity: {}
4040
podAnnotations: {}
4141

4242
# Special tolerations for fault remediation - allow running on nodes with any taints for log collection
43+
# Pod priority for this component. Overridden by the matching global when that is set.
44+
priorityClassName: ""
45+
4346
tolerations:
4447
- operator: "Exists"
4548

distros/kubernetes/nvsentinel/charts/gpu-health-monitor/templates/daemonset-dcgm-3.x.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -156,3 +156,6 @@ spec:
156156
tolerations:
157157
{{- toYaml . | nindent 8 }}
158158
{{- end }}
159+
{{- with (.Values.global.priorityClassName | default .Values.priorityClassName) }}
160+
priorityClassName: {{ . | quote }}
161+
{{- end }}

distros/kubernetes/nvsentinel/charts/gpu-health-monitor/templates/daemonset-dcgm-4.x.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -156,3 +156,6 @@ spec:
156156
tolerations:
157157
{{- toYaml . | nindent 8 }}
158158
{{- end }}
159+
{{- with (.Values.global.priorityClassName | default .Values.priorityClassName) }}
160+
priorityClassName: {{ . | quote }}
161+
{{- end }}

0 commit comments

Comments
 (0)