aboutsummaryrefslogtreecommitdiff
path: root/nomad/seafile.hcl
blob: c9303965aedec25d12f196e91adc583ec256d82c (plain) (blame)
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
job "seafile" {
  datacenters = ["dc1"]
  type = "service"

  constraint {
    attribute = "${attr.cpu.arch}"
    value     = "amd64"
  }

  group "main" {
    count = 1
    task "server" {
      driver = "docker"
      config {
        image = "superboum/amd64_seafile:v6"
        
        ## cmd + args are used for running an instance attachable for update
        # command = "/bin/sleep"
        # args = ["999999"]

        port_map {
          seahub_port = 8000
          seafdav_port = 8084
          seafhttp_port = 8082
        }

        volumes = [
          "/mnt/glusterfs/seafile:/mnt/seafile-data",
          "secrets/conf:/srv/webstore/conf",
          "secrets/ccnet:/srv/webstore/ccnet"
        ]
      }

      resources {
        memory = 2048
        network {
          port "seahub_port" {}
          port "seafhttp_port" {}
          port "seafdav_port" {}
        }
      }

      service {
        tags = [
          "seafile",
          "traefik.enable=true",
          "traefik.frontend.entryPoints=https,http",
          "traefik.frontend.rule=Host:cloud.deuxfleurs.fr;PathPrefix:/"
        ]
        port = "seahub_port"
        address_mode = "host"
        name = "seahub"
        check {
          type = "tcp"
          port = "seahub_port"
          interval = "60s"
          timeout = "5s"
          check_restart {
            limit = 3
            grace = "90s"
            ignore_warnings = false
          }
        }
      }

      service {
        tags = [
          "seafile",
          "traefik.enable=true",
          "traefik.frontend.entryPoints=https,http",
          "traefik.frontend.rule=Host:cloud.deuxfleurs.fr;PathPrefixStrip:/seafhttp"

        ]
        port = "seafhttp_port"
        address_mode = "host"
        name = "seafhttp"
        check {
          type = "tcp"
          port = "seafhttp_port"
          interval = "60s"
          timeout = "5s"
          check_restart {
            limit = 3
            grace = "90s"
            ignore_warnings = false
          }
        }
      }

      service {
        tags = [
          "seafile",
          "traefik.enable=true",
          "traefik.frontend.entryPoints=https,http",
          "traefik.frontend.rule=Host:cloud.deuxfleurs.fr;PathPrefix:/seafdav"

        ]
        port = "seafdav_port"
        address_mode = "host"
        name = "seafdav"
        check {
          type = "tcp"
          port = "seafdav_port"
          interval = "60s"
          timeout = "5s"
          check_restart {
            limit = 3
            grace = "90s"
            ignore_warnings = false
          }
        }
      }

      template {
        data = "{{ key \"configuration/seafile/ccnet/mykey.peer\" }}"
        destination = "secrets/ccnet/mykey.peer"
      }
      template {
        data = "{{ key \"configuration/seafile/ccnet/seafile.ini\" }}"
        destination = "secrets/ccnet/seafile.ini"
      }
      template {
        data = "{{ key \"configuration/seafile/conf/ccnet.conf\" }}"
        destination = "secrets/conf/ccnet.conf"
      }
      template {
        data = "{{ key \"configuration/seafile/conf/mykey.peer\" }}"
        destination = "secrets/conf/mykey.peer"
      }
      template {
        data = "{{ key \"configuration/seafile/conf/seafdav.conf\" }}"
        destination = "secrets/conf/seafdav.conf"
      }
      template {
        data = "{{ key \"configuration/seafile/conf/seafile.conf\" }}"
        destination = "secrets/conf/seafile.conf"
      }
      template {
        data = "{{ key \"configuration/seafile/conf/seahub_settings.py\" }}"
        destination = "secrets/conf/seahub_settings.py"
      }
      template {
        data = "{{ key \"configuration/seafile/conf/gunicorn.conf\" }}"
        destination = "secrets/conf/gunicorn.conf"
      }
    }
  }
}