fix taints
This commit is contained in:
parent
656354c5c7
commit
f70d4ff626
2 changed files with 8 additions and 2 deletions
|
|
@ -12,12 +12,17 @@ spec:
|
|||
spec:
|
||||
nodeSelector:
|
||||
accelerator: "h100-single"
|
||||
cloud.google.com/gke-accelerator: "nvidia-h100-80gb"
|
||||
|
||||
# 2. ACCEPT THE GPU TAINT
|
||||
tolerations:
|
||||
- key: "nvidia.com/gpu-h100"
|
||||
operator: "Exists"
|
||||
effect: "NoSchedule"
|
||||
- key: "nvidia.com/gpu-h100"
|
||||
operator: "Exists"
|
||||
effect: "NoSchedule"
|
||||
|
||||
volumes:
|
||||
- name: deepseek-storage
|
||||
persistentVolumeClaim:
|
||||
|
|
|
|||
|
|
@ -28,7 +28,8 @@ resource "google_container_node_pool" "h100_node_pool" {
|
|||
}
|
||||
|
||||
labels = {
|
||||
accelerator = "h100-single"
|
||||
"accelerator" = "h100-single"
|
||||
"cloud.google.com/gke-accelerator" = "nvidia-h100-80gb"
|
||||
}
|
||||
disk_size_gb = 200
|
||||
disk_type = "pd-ssd"
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue