Skip to content

Commit 951df73

Browse files
authored
Merge pull request #803 from frittentheke/mig-configs_802
Allow passing custom mig-parted configmap data in helm chart
2 parents d3ac478 + 3e655d7 commit 951df73

File tree

2 files changed

+49
-2
lines changed

2 files changed

+49
-2
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{{- if and (.Values.migManager.config.create) (not (empty .Values.migManager.config.data)) }}
2+
apiVersion: v1
3+
kind: ConfigMap
4+
metadata:
5+
name: {{ .Values.migManager.config.name }}
6+
namespace: {{ .Release.Namespace }}
7+
labels:
8+
{{- include "gpu-operator.labels" . | nindent 4 }}
9+
data:
10+
config.yaml: |
11+
version: v1
12+
mig-configs:
13+
{{- .Values.migManager.config.data | nindent 6 }}
14+
{{- end }}

deployments/gpu-operator/values.yaml

+35-2
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ devicePlugin:
283283
config:
284284
# Create a ConfigMap (default: false)
285285
create: false
286-
# ConfigMap name (either exiting or to create a new one with create=true above)
286+
# ConfigMap name (either existing or to create a new one with create=true above)
287287
name: ""
288288
# Default config name within the ConfigMap
289289
default: ""
@@ -358,9 +358,42 @@ migManager:
358358
- name: WITH_REBOOT
359359
value: "false"
360360
resources: {}
361+
# MIG configuration
362+
# Use "name" to either point to an existing ConfigMap or to create a new one with a list of configurations(i.e with create=true).
363+
# Use "data" to build an integrated ConfigMap from a set of configurations as
364+
# part of this helm chart. An example of setting "data" might be:
365+
# config:
366+
# name: custom-mig-parted-configs
367+
# create: true
368+
# data: |-
369+
# all-disabled:
370+
# - devices: all
371+
# mig-enabled: false
372+
# custom-mig:
373+
# - devices: [0]
374+
# mig-enabled: false
375+
# - devices: [1]
376+
# mig-enabled: true
377+
# mig-devices:
378+
# "1g.10gb": 7
379+
# - devices: [2]
380+
# mig-enabled: true
381+
# mig-devices:
382+
# "2g.20gb": 2
383+
# "3g.40gb": 1
384+
# - devices: [3]
385+
# mig-enabled: true
386+
# mig-devices:
387+
# "3g.40gb": 1
388+
# "4g.40gb": 1
361389
config:
362-
name: "default-mig-parted-config"
363390
default: "all-disabled"
391+
# Create a ConfigMap (default: false)
392+
create: false
393+
# ConfigMap name (either existing or to create a new one with create=true above)
394+
name: "default-mig-parted-config"
395+
# Data section for the ConfigMap to create (i.e only applies when create=true)
396+
data: {}
364397
gpuClientsConfig:
365398
name: ""
366399

0 commit comments

Comments
 (0)