File tree 2 files changed +49
-2
lines changed
2 files changed +49
-2
lines changed Original file line number Diff line number Diff line change
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 }}
Original file line number Diff line number Diff line change @@ -283,7 +283,7 @@ devicePlugin:
283
283
config :
284
284
# Create a ConfigMap (default: false)
285
285
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)
287
287
name : " "
288
288
# Default config name within the ConfigMap
289
289
default : " "
@@ -358,9 +358,42 @@ migManager:
358
358
- name : WITH_REBOOT
359
359
value : " false"
360
360
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
361
389
config :
362
- name : " default-mig-parted-config"
363
390
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 : {}
364
397
gpuClientsConfig :
365
398
name : " "
366
399
You can’t perform that action at this time.
0 commit comments