Skip to content
This repository was archived by the owner on Jan 27, 2026. It is now read-only.

Commit 40642d0

Browse files
authored
Update deployment files to include simplified node_groups config (#350)
1 parent 3a13e94 commit 40642d0

2 files changed

Lines changed: 3 additions & 4 deletions

File tree

deployment/k8s/orchestrator-chart/templates/orchestrator-deployment.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@
6767
value: "{{ .root.Values.env.WEBHOOK_URLS }}"
6868
{{- end }}
6969
{{- if .root.Values.env.NODE_GROUP_CONFIGS }}
70-
- name: NODE_GROUP_CONFIGS
71-
value: "{{ .root.Values.env.NODE_GROUP_CONFIGS | trim | quote }}"
70+
- name: NODE_GROUP_CONFIGS
71+
value: {{ .root.Values.env.NODE_GROUP_CONFIGS | quote }}
7272
{{- end }}
7373
{{- end }}
7474

deployment/k8s/orchestrator-chart/values.example.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@ env:
1010
DISCOVERY_REFRESH_INTERVAL: "60"
1111
BUCKET_NAME: "your-bucket-name"
1212
LOG_LEVEL: "info"
13-
NODE_GROUP_CONFIGS: '[{\"name\": \"h100-config\", \"min_group_size\": 1, \"max_group_size\": 1, \"compute_requirements\": \"gpu:model=h100;gpu:count=8\"}, {\"name\": \"a100-config\", \"min_group_size\": 2, \"max_group_size\": 2, \"compute_requirements\": \"gpu:model=a100;gpu:count=8\"}]'
14-
13+
NODE_GROUP_CONFIGS: '[{"name": "h100-config", "min_group_size": 1, "max_group_size": 1, "compute_requirements": "gpu:model=h100"}, {"name": "a100-config", "min_group_size": 2, "max_group_size": 2, "compute_requirements": "gpu:model=a100"}]'
1514
secrets:
1615
coordinatorKey: "your-coordinator-private-key"
1716
adminApiKey: "your-admin-api-key"

0 commit comments

Comments
 (0)