summaryrefslogtreecommitdiff
path: root/inventory/host_vars/sk-cloudio/nextcloud.yml
blob: 82ffca478cb6b1f246b24a678363cc92b49d434f (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
---
nextcloud_zfs:
  pool: storage
  name: nextcloud
  properties:
    compression: lz4

nextcloud_instances:
  luzesombra.skillz.biz:
    # new: true
    version: 28.0.4
    port: 8100
    hostnames:
    - luzesombra.skillz.biz
    zfs_properties:
      quota: 200G
    redis:
      version: 7.2.1
    database:
      type: mariadb
      version: 11.1.2
      password: "{{ vault_nextcloud_database_passwords['luzesombra.skillz.biz'] }}"
  insomnia.skillz.biz:
    # new: true
    version: 28.0.4
    port: 8101
    hostnames:
      - insomnia.skillz.biz
    zfs_properties:
      quota: 400G
    redis:
      version: 7.2.1
    database:
      type: mariadb
      version: 10.11.5
      password: "{{ vault_nextcloud_database_passwords['insomnia.skillz.biz'] }}"
  nc.skillz.biz:
    # new: true
    version: 28.0.4
    port: 8102
    hostnames:
      - nc.skillz.biz
    zfs_properties:
      quota: 200G
    redis:
      version: 7.2.1
    database:
      type: mariadb
      version: 10.11.5
      password: "{{ vault_nextcloud_database_passwords['nc.skillz.biz'] }}"
      extra_args:
      - "--log_bin_trust_function_creators=true"
    custom_image:
      dockerfile: |
        RUN set -x \
            && apt-get update -q \
            && apt-get install -y -q ffmpeg \
            && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
  visuals.pixeldada.com:
    # new: true
    version: 28.0.4
    port: 8103
    hostnames:
    - visuals.pixeldada.com
    zfs_properties:
      quota: 100G
    redis:
      version: 7.2.4
    database:
      type: mariadb
      version: 11.3.2
      password: "{{ vault_nextcloud_database_passwords['visuals.pixeldada.com'] }}"
      extra_args:
      - "--log_bin_trust_function_creators=true"
    custom_image:
      dockerfile: |
        RUN set -x \
            && apt-get update -q \
            && apt-get install -y -q ffmpeg \
            && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
  wolke.elev8.at:
    # new: true
    version: 28.0.4
    port: 8105
    hostnames:
    - wolke.elev8.at
    zfs_properties:
      quota: 10G
    redis:
      version: 7.2.1
    database:
      type: mariadb
      version: 10.11.5
      password: "{{ vault_nextcloud_database_passwords['wolke.elev8.at'] }}"