github.com/Ilhicas/nomad@v1.0.4-0.20210304152020-e86851182bc3/e2e/terraform/config/full-cluster/nomad/client-windows/client-windows.hcl (about)

     1  enable_debug = true
     2  
     3  log_level = "debug"
     4  
     5  log_file = "C:\\opt\\nomad\\nomad.log"
     6  
     7  data_dir = "C:\\opt\\nomad\\data"
     8  
     9  bind_addr = "0.0.0.0"
    10  
    11  # Enable the client
    12  client {
    13    enabled = true
    14  
    15    options {
    16      # Allow rawexec jobs
    17      "driver.raw_exec.enable" = "1"
    18    }
    19  }
    20  
    21  consul {
    22    address = "127.0.0.1:8500"
    23  }
    24  
    25  vault {
    26    enabled = true
    27    address = "http://active.vault.service.consul:8200"
    28  }
    29  
    30  telemetry {
    31    collection_interval        = "1s"
    32    disable_hostname           = true
    33    prometheus_metrics         = true
    34    publish_allocation_metrics = true
    35    publish_node_metrics       = true
    36  }