File tree Expand file tree Collapse file tree 3 files changed +70
-0
lines changed
deploy/cloud/helm/platform Expand file tree Collapse file tree 3 files changed +70
-0
lines changed Original file line number Diff line number Diff line change @@ -34,3 +34,12 @@ dependencies:
3434 version : 11.1.0
3535 repository : " https://charts.bitnami.com/bitnami"
3636 condition : etcd.enabled
37+ - name : kai-scheduler
38+ version : v0.8.1
39+ repository : oci://ghcr.io/nvidia/kai-scheduler
40+ condition : kai-scheduler.enabled
41+ - name : grove-charts
42+ alias : grove
43+ version : v0.0.0-6e30275
44+ repository : oci://ghcr.io/nvidia/grove
45+ condition : grove.enabled
Original file line number Diff line number Diff line change 1+ # SPDX-FileCopyrightText: Copyright (c) 2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
2+ # SPDX-License-Identifier: Apache-2.0
3+ #
4+ # Licensed under the Apache License, Version 2.0 (the "License");
5+ # you may not use this file except in compliance with the License.
6+ # You may obtain a copy of the License at
7+ #
8+ # http://www.apache.org/licenses/LICENSE-2.0
9+ #
10+ # Unless required by applicable law or agreed to in writing, software
11+ # distributed under the License is distributed on an "AS IS" BASIS,
12+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+ # See the License for the specific language governing permissions and
14+ # limitations under the License.
15+ ---
16+ {{- if index .Values "kai-scheduler" "enabled" -}}
17+ apiVersion : scheduling.run.ai/v2
18+ kind : Queue
19+ metadata :
20+ name : default
21+ spec :
22+ resources :
23+ cpu :
24+ quota : -1
25+ limit : -1
26+ overQuotaWeight : 1
27+ gpu :
28+ quota : -1
29+ limit : -1
30+ overQuotaWeight : 1
31+ memory :
32+ quota : -1
33+ limit : -1
34+ overQuotaWeight : 1
35+ ---
36+ apiVersion : scheduling.run.ai/v2
37+ kind : Queue
38+ metadata :
39+ name : dynamo
40+ spec :
41+ parentQueue : default
42+ resources :
43+ cpu :
44+ quota : -1
45+ limit : -1
46+ overQuotaWeight : 1
47+ gpu :
48+ quota : -1
49+ limit : -1
50+ overQuotaWeight : 1
51+ memory :
52+ quota : -1
53+ limit : -1
54+ overQuotaWeight : 1
55+ {{- end -}}
Original file line number Diff line number Diff line change @@ -55,6 +55,12 @@ dynamo-operator:
5555 ingressHostSuffix : " "
5656 virtualServiceSupportsHTTPS : false
5757
58+ grove :
59+ enabled : false
60+
61+ kai-scheduler :
62+ enabled : false
63+
5864etcd :
5965 enabled : true
6066 persistence :
You can’t perform that action at this time.
0 commit comments