Skip to content
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