File tree Expand file tree Collapse file tree
helm/nvidia-device-plugin Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -3,4 +3,4 @@ name: nvidia-device-plugin
33description : NVIDIA Device Plugin for Kubernetes
44type : application
55version : 0.1.0
6- appVersion : " v0.17.1 "
6+ appVersion : " v0.18.0 "
Original file line number Diff line number Diff line change 2525 - image : " {{ .Values.image.repository }}:{{ .Values.image.tag }}"
2626 imagePullPolicy : {{ .Values.image.pullPolicy }}
2727 name : nvidia-device-plugin-ctr
28- args : ["--fail-on-init-error=false "]
28+ command : ["nvidia-device-plugin "]
2929 securityContext :
3030 {{- toYaml .Values.securityContext | nindent 10 }}
3131 resources :
3535 env :
3636 - name : PASS_DEVICE_SPECS
3737 value : " true"
38+ {{- if typeIs "bool" .Values.failOnInitError }}
39+ - name : FAIL_ON_INIT_ERROR
40+ value : {{ .Values.failOnInitError | quote }}
41+ {{- else }}
3842 - name : FAIL_ON_INIT_ERROR
3943 value : " false"
44+ {{- end }}
4045 {{- if .Values.env }}
4146 {{- toYaml .Values.env | nindent 8 }}
4247 {{- else }}
5055 value : " compute,utility"
5156 {{- end }}
5257 volumes :
53- {{- toYaml .Values.volumes | nindent 8 }}
54- hostNetwork : true
58+ {{- toYaml .Values.volumes | nindent 8 }}
Original file line number Diff line number Diff line change 33 tag : v0.18.0
44 pullPolicy : IfNotPresent
55
6+ failOnInitError : false
7+
68nodeSelector :
79 kubernetes.io/arch : amd64
810 gpu : " true"
You can’t perform that action at this time.
0 commit comments