Skip to content

Prevent GPU over provisioning during scale up #1111

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jun 8, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion manager/generate_eks.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,12 @@ def apply_gpu_settings(nodegroup):
"tags": {
"k8s.io/cluster-autoscaler/node-template/label/nvidia.com/gpu": "true",
"k8s.io/cluster-autoscaler/node-template/taint/dedicated": "nvidia.com/gpu=true",
"k8s.io/cluster-autoscaler/node-template/label/k8s.amazonaws.com/accelerator": "true", # accepted values are GPU type such as nvidia-tesla-k80 but using "true" as a placeholder for now because the value doesn't matter for AWS cluster autoscaler
},
"labels": {
"nvidia.com/gpu": "true",
"k8s.amazonaws.com/accelerator": "true", # accepted values are GPU type such as nvidia-tesla-k80 but using "true" as a placeholder for now because the value doesn't matter for AWS cluster autoscaler
},
"labels": {"nvidia.com/gpu": "true"},
"taints": {"nvidia.com/gpu": "true:NoSchedule"},
}

Expand Down