-
Notifications
You must be signed in to change notification settings - Fork 1
/
seaweedfs-volumes.job.nomad
106 lines (89 loc) · 2.02 KB
/
seaweedfs-volumes.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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
variable "port" {
type = number
default = 8889
}
locals {
grpcPort = var.port + 10000
}
job "seaweedfs-volumes" {
datacenters = ["dc1"]
type = "system"
constraint {
attribute = "${meta.seaweedfs_volume}"
value = true
}
group "volumes" {
network {
mode = "host"
port "http" {
static = var.port
to = var.port
}
port "grpc" {
static = local.grpcPort
to = local.grpcPort
}
}
volume "seaweedfs-volume" {
type = "host"
read_only = false
source = "seaweedfs-volume"
}
service {
tags = ["http"]
name = "seaweedfs-volume"
port = "http"
}
service {
tags = ["grpc"]
name = "seaweedfs-volume"
port = "grpc"
}
task "seaweed" {
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
}
volume_mount {
volume = "seaweedfs-volume"
destination = "/data"
read_only = false
}
config {
image = "chrislusf/seaweedfs"
args = [
"-logtostderr",
"volume",
"-mserver=${SEAWEEDFS_MASTER_IP_http}:${SEAWEEDFS_MASTER_PORT_http}.${SEAWEEDFS_MASTER_PORT_grpc}",
"-dir=/data/${node.unique.name}",
"-max=0",
"-dataCenter=${node.datacenter}",
"-ip=${NOMAD_IP_http}",
"-ip.bind=0.0.0.0",
"-port=${NOMAD_PORT_http}",
"-port.grpc=${NOMAD_PORT_grpc}"
]
volumes = [
"config:/config"
]
ports = ["http", "grpc"]
privileged = true
}
}
}
}