github.com/hernad/nomad@v1.6.112/e2e/terraform/etc/nomad.d/client-linux.hcl (about)

     1  # Copyright (c) HashiCorp, Inc.
     2  # SPDX-License-Identifier: MPL-2.0
     3  
     4  plugin_dir = "/opt/nomad/plugins"
     5  
     6  client {
     7    enabled = true
     8    options = {
     9      "user.denylist" = "www-data"
    10    }
    11  }
    12  
    13  plugin "nomad-driver-podman" {
    14    config {
    15      volumes {
    16        enabled = true
    17      }
    18    }
    19  }
    20  
    21  plugin "nomad-driver-ecs" {
    22    config {
    23      enabled = true
    24      cluster = "nomad-rtd-e2e"
    25      region  = "us-east-1"
    26    }
    27  }
    28  
    29  plugin "raw_exec" {
    30    config {
    31      enabled = true
    32    }
    33  }
    34  
    35  plugin "docker" {
    36    config {
    37      allow_privileged = true
    38  
    39      volumes {
    40        enabled = true
    41      }
    42    }
    43  }