blob: 63538708a8781b707a765d9afbf935edba7bb455 (
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
|
---
install:
vm:
mem: 1024
numcpu: 1
autostart: False
disks:
primary: software-raid
raid:
level: 1
members:
- /dev/sda
- /dev/sdb
scsi:
sda:
type: zfs
name: root1
size: 10g
sdb:
type: zfs
name: root2
size: 10g
interfaces:
- bridge: br-public
name: primary0
network:
nameservers: "{{ vm_host.network.dns }}"
domain: "{{ host_domain }}"
systemd_link:
interfaces: "{{ install.interfaces }}"
primary: &_network_primary_
name: primary0
address: "{{ vm_host.network.bridges.public.prefix | ipaddr(vm_host.network.bridges.public.offsets[inventory_hostname]) | ipaddr('address/prefix') }}"
gateway: "{{ vm_host.network.bridges.public.prefix | ipaddr(vm_host.network.bridges.public.offsets[vm_host.name]) | ipaddr('address') }}"
overlay: "{{ (vm_host.network.bridges.public.overlay.prefix | ipaddr(vm_host.network.bridges.public.overlay.offsets[inventory_hostname])).split('/')[0] }}"
interfaces:
- *_network_primary_
external_ip: "{{ network.primary.overlay }}"
### this machine will be used to migrate wolke.chaox.org:
#
# https://owncloud.org/news/upgrading-owncloud-on-debian-stable-to-official-packages/
#
|