-
Notifications
You must be signed in to change notification settings - Fork 1
/
seaweedfs-filer.job.nomad
91 lines (77 loc) · 1.67 KB
/
seaweedfs-filer.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
85
86
87
88
89
90
91
variable "port" {
type = number
default = 8888
}
locals {
grpcPort = var.port + 10000
}
job "seaweedfs-filer" {
datacenters = ["dc1"]
type = "service"
constraint {
operator = "distinct_hosts"
value = true
}
group "filer" {
network {
mode = "host"
port "http" {
static = var.port
to = var.port
}
port "grpc" {
static = local.grpcPort
to = local.grpcPort
}
}
volume "seaweedfs-filer" {
type = "host"
read_only = false
source = "seaweedfs-filer"
}
service {
tags = ["http"]
name = "seaweedfs-filer"
port = "http"
}
service {
tags = ["grpc"]
name = "seaweedfs-filer"
port = "grpc"
}
task "filer" {
driver = "docker"
template {
destination = "config/.env"
env = true
data = <<-EOF
{{ range $i, $s := service "http.seaweedfs-master" }}
{{- if eq $i 0 -}}
SEAWEEDFS_MASTER_IP_http={{ .Address }}
SEAWEEDFS_MASTER_PORT_http={{ .Port }}
{{- end -}}
{{ end }}
{{ range $i, $s := service "grpc.seaweedfs-master" }}
{{- if eq $i 0 -}}
SEAWEEDFS_MASTER_IP_grpc={{ .Address }}
SEAWEEDFS_MASTER_PORT_grpc={{ .Port }}
{{- end -}}
{{ end }}
EOF
}
config {
image = "chrislusf/seaweedfs"
args = [
"-logtostderr",
"filer",
"-ip=${NOMAD_IP_http}",
"-ip.bind=0.0.0.0",
"-master=${SEAWEEDFS_MASTER_IP_http}:${SEAWEEDFS_MASTER_PORT_http}.${SEAWEEDFS_MASTER_PORT_grpc}",
"-port=${NOMAD_PORT_http}",
"-port.grpc=${NOMAD_PORT_grpc}"
]
ports = ["http", "grpc"]
}
}
}
}