nomad icon indicating copy to clipboard operation
nomad copied to clipboard

Error while creating mount source

Open beso-dev18 opened this issue 6 months ago • 3 comments

Nomad version

Nomad v1.8.3 BuildDate 2024-08-13T07:37:30Z Revision 63b636e5cbaca312cf6ea63e040f445f05f00478

Operating system and Environment details

MacOS Version Sonoma 14.6.1

Issue

I am installing Nomad Community on my local machine following the instructions in the documentation. But when I deploy the redit-svc job, I got this error. Is there any way to fix it?

Reproduction steps

Follow instructions in the documentation

Expected Result

A running job

Actual Result

Got error while creating mount source

Job file (if appropriate)

job "pytechco-redis" {
  type = "service"

  group "ptc-redis" {
    count = 1
    network {
      port "redis" {
        to = 6379
      }
    }

    service {
      name     = "redis-svc"
      port     = "redis"
      provider = "nomad"
    }

    task "redis-task" {
      driver = "docker"

      config {
        image = "redis:7.0.7-alpine"
        ports = ["redis"]
      }
    }
  }
}

Nomad Server logs (if appropriate)

Nomad Client logs (if appropriate)

image

beso-dev18 avatar Aug 16 '24 07:08 beso-dev18