summaryrefslogtreecommitdiff
path: root/inventory/host_vars/ch-k8s-m2.yml
blob: a41c97a8f2beb01a51d583e236f3b9d0f505079c (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
---
_vm_host_: ch-hroottest

install:
  vm:
    host: "{{ _vm_host_ }}"
    mem: 4096
    numcpu: 2
    autostart: True
  disks:
    primary: /dev/sda
    scsi:
      sda:
        type: zfs
        name: root
        size: 20g
        properties:
          refreservation: none
  interfaces:
  - bridge: br-public
    name: primary0

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') }}"

docker_lvm:
  vg: "{{ host_name }}"
  lv: docker
  size: 7G
  fs: ext4

kubelet_lvm:
  vg: "{{ host_name }}"
  lv: kubelet
  size: 5G
  fs: ext4