Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,9 @@ spec:
{{- toYaml . | nindent 6 }}
{{- end }}
volumes:
- name: hostdev
hostPath:
path: /dev
- name: "pod-gpu-resources"
hostPath:
path: '{{ .Values.dcgmExporter.kubeletPath }}'
Expand Down Expand Up @@ -124,6 +127,8 @@ spec:
- name: "metrics"
containerPort: {{ .Values.dcgmExporter.service.port }}
volumeMounts:
- name: hostdev
mountPath: /dev
- name: "pod-gpu-resources"
readOnly: true
mountPath: "/var/lib/kubelet/pod-resources"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,8 @@ spec:
resources:
{{- toYaml .Values.devicePlugin.resources | nindent 12 }}
volumeMounts:
- name: hostdev
mountPath: /dev
- name: device-plugin
mountPath: /var/lib/kubelet/device-plugins
- name: lib
Expand Down Expand Up @@ -120,6 +122,8 @@ spec:
resources:
{{- toYaml .Values.devicePlugin.vgpuMonitor.resources | nindent 12 }}
volumeMounts:
- name: hostdev
mountPath: /dev
- name: ctrs
mountPath: {{ .Values.devicePlugin.monitorctrPath }}
- name: dockers
Expand All @@ -133,6 +137,9 @@ spec:
- name: hosttmp
mountPath: /tmp
volumes:
- name: hostdev
hostPath:
path: /dev
- name: ctrs
hostPath:
path: {{ .Values.devicePlugin.monitorctrPath }}
Expand Down
2 changes: 1 addition & 1 deletion infrastructure/gpu/.olares/config/gpu/hami/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ nameOverride: ""
fullnameOverride: ""
namespaceOverride: ""
imagePullSecrets: []
version: "v2.6.9"
version: "v2.6.10"

# Nvidia GPU Parameters
resourceName: "nvidia.com/gpu"
Expand Down
2 changes: 1 addition & 1 deletion platform/hami/.olares/Olares.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ target: prebuilt
output:
containers:
-
name: beclab/hami:v2.6.9
name: beclab/hami:v2.6.10
-
name: beclab/hami-webui-fe-oss:v1.0.8
-
Expand Down
Loading