Skip to content

Commit f4420dd

Browse files
committed
feat: Add Grove and Kai scheduler as part of dynamo cloud helm chart
Signed-off-by: Julien Mancuso <jmancuso@nvidia.com>
1 parent 9e6972a commit f4420dd

File tree

3 files changed

+70
-0
lines changed

3 files changed

+70
-0
lines changed

deploy/cloud/helm/platform/Chart.yaml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff 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
Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
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 -}}

deploy/cloud/helm/platform/values.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff 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+
5864
etcd:
5965
enabled: true
6066
persistence:

0 commit comments

Comments
 (0)