File tree Expand file tree Collapse file tree
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"
3335 value : " all"
3436 - name : NVIDIA_DRIVER_CAPABILITIES
3537 value : " compute,utility"
38+ # Set NVIDIA driver root to help locate driver libraries
39+ # Default is "/" which should work with privileged containers
40+ - name : NVIDIA_DRIVER_ROOT
41+ value : " /"
42+ # Device discovery strategy: "auto" (default) or "nvml"
43+ # Use "auto" to let the plugin automatically detect the best strategy
44+ # Only use "nvml" if you know NVML is available and auto-detection fails
45+ # - name: DEVICE_DISCOVERY_STRATEGY
46+ # value: "auto"
3647
3748volumeMounts :
3849 - name : device-plugin
Original file line number Diff line number Diff line change 1- # Custom values for ollama-helm with GPU support
21# Based on official otwld/ollama-helm chart with custom configurations
32
43replicaCount : 1
@@ -172,9 +171,11 @@ persistentVolume:
172171 enabled : true
173172 accessModes :
174173 - ReadWriteOnce
175- annotations : {}
174+ annotations :
175+ # Set the number of replicas for this Longhorn volume by overriding the storage class default
176+ longhorn.io/number-of-replicas : " 1"
176177 existingClaim : " "
177- size : 500Gi
178+ size : 200Gi
178179 storageClass : " longhorn"
179180 volumeMode : " "
180181 subPath : " "
You can’t perform that action at this time.
0 commit comments