Skip to content
Open
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
4 changes: 4 additions & 0 deletions helm/amd-gpu/templates/deviceplugin-daemonset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,10 @@ spec:
containers:
- name: {{ .Chart.Name }}-dp-cntr
image: {{ .Values.dp.image.repository }}:{{ .Values.dp.image.tag | default .Chart.AppVersion }}
command:
{{- toYaml .Values.dp.command | nindent 12 }}
args:
{{- toYaml .Values.dp.args | nindent 12 }}
securityContext:
{{- toYaml .Values.securityContext | nindent 12 }}
volumeMounts:
Expand Down
2 changes: 2 additions & 0 deletions helm/amd-gpu/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ dp:
repository: docker.io/rocm/k8s-device-plugin
# Overrides the image tag whose default is the chart appVersion.
tag: "1.31.0.6"
command: ["./k8s-device-plugin"]
args: ["-logtostderr=true", "-stderrthreshold=INFO", "-v=5"]
resources: {}
# Set daemonsets updateStrategy for device plugin
updateStrategy:
Expand Down