Assign to certain device

Sometimes a task needs to run on a specific GPU. Set the nvidia.com/use-gpuuuid field in the pod annotations; the HAMi scheduler will try to schedule the task onto the device with that UUID.

For example, a task with the following annotation will be assigned to the device with UUID GPU-123456:

metadata:
  annotations:
    nvidia.com/use-gpuuuid: "GPU-123456"

NOTICE: Each GPU UUID is unique within a cluster, so pinning a task to a specific UUID effectively pins it to the node that hosts that GPU.