mirror of
https://github.com/kemko/nomad.git
synced 2026-01-01 16:05:42 +03:00
40 lines
827 B
HCL
40 lines
827 B
HCL
# Copyright (c) HashiCorp, Inc.
|
|
# SPDX-License-Identifier: MPL-2.0
|
|
|
|
# A test NFS server that serves a host volume for persistent state.
|
|
job "nfs" {
|
|
group "nfs" {
|
|
service {
|
|
name = "nfs"
|
|
port = "nfs"
|
|
provider = "nomad"
|
|
}
|
|
network {
|
|
port "nfs" {
|
|
to = 2049
|
|
static = 2049
|
|
}
|
|
}
|
|
volume "host-nfs" {
|
|
type = "host"
|
|
source = "host-nfs"
|
|
}
|
|
task "nfs" {
|
|
driver = "docker"
|
|
config {
|
|
image = "atlassian/nfs-server-test:2.1"
|
|
ports = ["nfs"]
|
|
privileged = true
|
|
}
|
|
env {
|
|
# this is the container's default, but being explicit is nice.
|
|
EXPORT_PATH = "/srv/nfs"
|
|
}
|
|
volume_mount {
|
|
volume = "host-nfs"
|
|
destination = "/srv/nfs"
|
|
}
|
|
}
|
|
}
|
|
}
|