-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathvalues.yaml
More file actions
75 lines (68 loc) · 1.94 KB
/
Copy pathvalues.yaml
File metadata and controls
75 lines (68 loc) · 1.94 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# Copyright 2026 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# [START gke_ai_ml_gke_slurm_autopilot_values]
controller:
slurmctld:
image:
repository: gcr.io/gke-release/slinky/slurmctld
tag: IMAGE_TAG
reconfigure:
image:
repository: gcr.io/gke-release/slinky/slurmctld
tag: IMAGE_TAG
restapi:
replicas: 1
slurmrestd:
image:
repository: gcr.io/gke-release/slinky/slurmrestd
tag: IMAGE_TAG
nodesets:
slinky:
enabled: true
replicas: 1
metadata:
labels:
# The label value must exactly match the name of the WorkloadAllowlist
cloud.google.com/matching-allowlist: slurm-worker-allowlist.yaml
slurmd:
image:
repository: gcr.io/gke-release/slinky/slurmd
tag: IMAGE_TAG
volumeMounts:
- name: shared-dir
mountPath: /shared
resources:
requests:
cpu: "30"
memory: "110Gi"
limits:
cpu: "30"
memory: "110Gi"
# Optional: You can request a specific GKE Compute class
podSpec:
volumes:
- name: shared-dir
persistentVolumeClaim:
claimName: slurm-shared-storage
nodeSelector:
cloud.google.com/compute-class: Performance
loginsets:
slinky:
enabled: true
replicas: 1
login:
image:
repository: gcr.io/gke-release/slinky/login
tag: IMAGE_TAG
# [END gke_ai_ml_gke_slurm_autopilot_values]