blob: 6c11048a08fd90e436c82fb7eab49f1a10fc6e21 (
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
|
---
vm_host: sk-2019vm
install:
host: "{{ vm_host }}"
mem: 10240
numcpu: 6
disks:
primary: /dev/sda
scsi:
sda:
type: zfs
pool: storage
name: "{{ inventory_hostname }}"
size: 20g
sdb:
type: zfs
pool: storage
name: "{{ inventory_hostname }}-data"
size: 50g
interfaces:
- bridge: br-public
name: primary0
autostart: True
network:
nameservers: "{{ hostvars[vm_host].vm_host.network.dns }}"
domain: "{{ host_domain }}"
systemd_link:
interfaces: "{{ install.interfaces }}"
primary:
interface: primary0
ip: "{{ hostvars[vm_host].vm_host.network.bridges.public.prefix | ipaddr(hostvars[vm_host].vm_host.network.bridges.public.offsets[inventory_hostname]) | ipaddr('address') }}"
mask: "{{ hostvars[vm_host].vm_host.network.bridges.public.prefix | ipaddr('netmask') }}"
gateway: "{{ hostvars[vm_host].vm_host.network.bridges.public.prefix | ipaddr('address') }}"
overlay: "{{ (hostvars[vm_host].vm_host.network.bridges.public.overlay.prefix | ipaddr(hostvars[vm_host].vm_host.network.bridges.public.overlay.offsets[inventory_hostname])).split('/')[0] }}"
external_ip: "{{ network.primary.overlay }}"
docker_lvm:
vg: "{{ host_name }}"
lv: docker
size: 7G
fs: ext4
kubelet_lvm:
vg: "{{ host_name }}"
lv: kubelet
size: 5G
fs: ext4
emc_stats_lvm:
pvs: /dev/sdb
vg: "{{ host_name }}-data"
lv: stats
size: 42G
fs: ext4
|