GPU support constraint missing drivers filtered 1 node

using nomad 1.3.1

updated the client config as following

plugin "nomad-device-nvidia" {
  config {
    enabled            = true
    ignored_gpu_ids    = ["GPU-fef8089b", "GPU-ac81e44d"]
    fingerprint_period = "1m"
  }
}

and the same job gives an error while introducing the device “nvidea/gpu”

job "test-gpu" {
    datacenters = ["dc1"]

    group "test-gpu" {
        count = 1
        task "test-gpu" {
            driver = "java"

            config {
                image = "israelabebe/test-gpu:latest"
            }
            resources {
                cpu    = 2000 # MHz
                memory = 1000 # MB
                device "nvidia/gpu" {
                  count = 1
                }
            }
        }
    }
}

the error is as follows

### test-gpu 1 unplaced

* Constraint `missing drivers` filtered 1 node
* Constraint `missing devices` filtered 3 nodes

Hi @IsraelAbebe, at first glance it looks like there may be a typo in the resources block,

device "nvidea/gpu" {

shouldn’t that be

device "nvidia/gpu" {

?

@seth.hoenig that’s a typo when I write the question, I will update it.

Has anyone found a solution to this?