File tree Expand file tree Collapse file tree 6 files changed +21
-2
lines changed Expand file tree Collapse file tree 6 files changed +21
-2
lines changed Original file line number Diff line number Diff line change @@ -896,7 +896,7 @@ spec:
896
896
description : |-
897
897
InferenceFlavors represents a list of flavor names with fungibility supported
898
898
to serve the model.
899
- - If not set, always apply with the 0-index model by default.
899
+ - If not set, will employ the model configured flavors by default.
900
900
- If set, will lookup the flavor names following the model orders.
901
901
items :
902
902
type : string
Original file line number Diff line number Diff line change 51
51
description: |-
52
52
InferenceFlavors represents a list of flavor names with fungibility supported
53
53
to serve the model.
54
- - If not set, always apply with the 0-index model by default.
54
+ - If not set, will employ the model configured flavors by default.
55
55
- If set, will lookup the flavor names following the model orders.
56
56
items:
57
57
type: string
Original file line number Diff line number Diff line change
1
+ apiVersion : v1
2
+ kind : ConfigMap
3
+ metadata :
4
+ name : {{ include "chart.fullname" . }}-global-config
5
+ labels :
6
+ {{- include "chart.labels" . | nindent 4 }}
7
+ data :
8
+ config.data : {{ .Values.globalConfig.configData | toYaml | indent 1 }}
Original file line number Diff line number Diff line change @@ -5,6 +5,13 @@ metadata:
5
5
labels :
6
6
{{- include "chart.labels" . | nindent 4 }}
7
7
rules :
8
+ - apiGroups :
9
+ - " "
10
+ resources :
11
+ - configmaps
12
+ verbs :
13
+ - get
14
+ - list
8
15
- apiGroups :
9
16
- " "
10
17
resources :
Original file line number Diff line number Diff line change @@ -25,6 +25,10 @@ controllerManager:
25
25
replicas : 1
26
26
serviceAccount :
27
27
annotations : {}
28
+ globalConfig :
29
+ configData : |-
30
+ scheduler-name: default-scheduler
31
+ # init-container-image: inftyai/model-loader:v0.0.10
28
32
kubernetesClusterDomain : cluster.local
29
33
metricsService :
30
34
ports :
You can’t perform that action at this time.
0 commit comments