-
Notifications
You must be signed in to change notification settings - Fork 1
/
seaweedfs-master.job.nomad
84 lines (68 loc) · 1.36 KB
/
seaweedfs-master.job.nomad
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
variable "port" {
type = number
default = 9333
}
locals {
grpcPort = var.port + 10000
}
job "seaweedfs-master" {
datacenters = ["dc1"]
type = "service"
constraint {
operator = "distinct_hosts"
value = true
}
group "master" {
network {
mode = "host"
port "http" {
static = var.port
to = var.port
}
port "grpc" {
static = local.grpcPort
to = local.grpcPort
}
}
volume "seaweedfs-master" {
type = "host"
read_only = false
source = "seaweedfs-master"
}
service {
tags = ["http"]
name = "seaweedfs-master"
port = "http"
}
service {
tags = ["grpc"]
name = "seaweedfs-master"
port = "grpc"
}
task "seaweed" {
driver = "docker"
volume_mount {
volume = "seaweedfs-master"
destination = "/data"
read_only = false
}
config {
image = "chrislusf/seaweedfs"
args = [
"-logtostderr",
"master",
"-ip=${NOMAD_IP_http}",
"-ip.bind=0.0.0.0",
"-mdir=/data",
"-port=${NOMAD_PORT_http}",
"-port.grpc=${NOMAD_PORT_grpc}"
]
volumes = [
"config:/config"
]
ports = ["http", "grpc"]
privileged = true
}
}
}
}