blob: cb5b47a8ea14ae3e4e9dd1977d788c24076c213e (
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
|
---
install:
cloud:
credentials: "{{ vault_hroot_robot_account }}"
server_name: "{{ host_name }}"
disks:
layout: nvme_raid
root_lvm_size: 15G
network: {}
zfs_zpools:
storage:
mountpoint: /srv/storage
create_vdevs: mirror nvme0n1p3 nvme1n1p3
zfs_arc_size:
min: "{{ 2 * 1024 * 1024 * 1024 }}"
max: "{{ 16 * 1024 * 1024 * 1024 }}"
containerd_zfs:
pool: storage
name: containerd
size: 40G
kubelet_zfs:
pool: storage
name: kubelet
size: 20G
kubernetes_container_runtime: containerd
kubernetes_standalone_max_pods: 42
kubernetes_standalone_resolv_conf: /var/run/systemd/resolve/resolv.conf
kubernetes_standalone_cni_variant: with-localonly-portmap
acmetool_directory_server: "{{ acmetool_directory_server_le_live }}"
### TODO: should this be done via the nextcloud role?
nginx_vhosts:
wolke.elevate.at:
template: generic-proxy-no-buffering-with-acme
client_max_body_size: 0
acme: true
hostnames:
- wolke.elev8.at
# - wolke.elevate.at
proxy_pass: "http://127.0.0.1:8100"
# insomnia.skillz.biz:
# template: generic-proxy-no-buffering-with-acme
# client_max_body_size: 0
# acme: true
# hostnames:
# - insomnia.skillz.biz
# proxy_pass: "http://127.0.0.1:8101"
|