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:
|
spec:
|
||||||
nodeSelector:
|
nodeSelector:
|
||||||
accelerator: "h100-single"
|
accelerator: "h100-single"
|
||||||
|
cloud.google.com/gke-accelerator: "nvidia-h100-80gb"
|
||||||
|
|
||||||
# 2. ACCEPT THE GPU TAINT
|
# 2. ACCEPT THE GPU TAINT
|
||||||
tolerations:
|
tolerations:
|
||||||
- key: "nvidia.com/gpu-h100"
|
- key: "nvidia.com/gpu-h100"
|
||||||
operator: "Exists"
|
operator: "Exists"
|
||||||
effect: "NoSchedule"
|
effect: "NoSchedule"
|
||||||
|
- key: "nvidia.com/gpu-h100"
|
||||||
|
operator: "Exists"
|
||||||
|
effect: "NoSchedule"
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
- name: deepseek-storage
|
- name: deepseek-storage
|
||||||
persistentVolumeClaim:
|
persistentVolumeClaim:
|
||||||
|
|
|
||||||
|
|
@ -28,7 +28,8 @@ resource "google_container_node_pool" "h100_node_pool" {
|
||||||
}
|
}
|
||||||
|
|
||||||
labels = {
|
labels = {
|
||||||
accelerator = "h100-single"
|
"accelerator" = "h100-single"
|
||||||
|
"cloud.google.com/gke-accelerator" = "nvidia-h100-80gb"
|
||||||
}
|
}
|
||||||
disk_size_gb = 200
|
disk_size_gb = 200
|
||||||
disk_type = "pd-ssd"
|
disk_type = "pd-ssd"
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue