virt updates for buildvm-aarch64

This commit is contained in:
Peter Robinson 2016-09-03 11:15:17 +00:00
parent 36e0c8c740
commit c6f09930cb
2 changed files with 13 additions and 1 deletions

View file

@ -61,6 +61,16 @@ virt_install_command_one_nic: virt-install -n {{ inventory_hostname }}
--network bridge={{ main_bridge }},model=virtio
--autostart --noautoconsole --watchdog default
virt_install_command_nowdog: virt-install -n {{ inventory_hostname }}
--memory={{ mem_size }},maxmemory={{ max_mem_size }} --memballoon virtio
--disk bus=virtio,path={{ volgroup }}/{{ inventory_hostname }}
--vcpus={{ num_cpus }},maxvcpus={{ max_cpu }} -l {{ ks_repo }} -x
'net.ifnames=0 ksdevice=eth0 ks={{ ks_url }} console=tty0 console=ttyS0
hostname={{ inventory_hostname }} nameserver={{ dns }}
ip={{ eth0_ip }}::{{ gw }}:{{ nm }}:{{ inventory_hostname }}:eth0:none'
--network bridge={{ main_bridge }},model=virtio
--autostart --noautoconsole --watchdog default
virt_install_command_two_nic: virt-install -n {{ inventory_hostname }}
--memory={{ mem_size }},maxmemory={{ max_mem_size }} --memballoon virtio
--disk bus=virtio,path={{ volgroup }}/{{ inventory_hostname }}

View file

@ -1,16 +1,18 @@
---
# common items for the buildvm-* koji builders
# common items for the buildvm-aarch64aarch64* koji builders
volgroup: /dev/vg_Server
lvm_size: 150000
mem_size: 24576
max_mem_size: "{{ mem_size }}"
num_cpus: 4
maxvcpus: "{{ num_cpus }}"
ks_url: http://10.5.126.23/repo/rhel/ks/buildvm-fedora-24-aarch64
ks_repo: http://10.5.126.23/pub/fedora-secondary/releases/24/Everything/aarch64/os/
nm: 255.255.255.0
gw: 10.5.129.254
dns: 10.5.126.21
main_bridge: br0
virt_install_command: "{{ virt_install_command_nowdog }}"
# for systems that do not match the above - specify the same parameter in
# the host_vars/$hostname file