releng_compose group vars: add some install variants that use the fast cache mode for composers.
Note, we don't want to use this everywhere, only on machines that have no data actually stored on them (these use the nfs koji mount) and can easily be reinstalled it anything becomes messed up. Signed-off-by: Kevin Fenzi <kevin@scrye.com>
This commit is contained in:
parent
e109c93d0b
commit
d0e3410d69
2 changed files with 23 additions and 1 deletions
|
@ -105,6 +105,28 @@ virt_install_command_two_nic: virt-install -n {{ inventory_hostname }}
|
|||
--network=bridge={{ nfs_bridge }},model=virtio,mac={{ mac_address1 }}
|
||||
--autostart --noautoconsole --watchdog default --rng /dev/random
|
||||
|
||||
virt_install_command_one_nic_unsafe: virt-install -n {{ inventory_hostname }}
|
||||
--memory={{ mem_size }},maxmemory={{ max_mem_size }} --memballoon virtio
|
||||
--disk bus=virtio,path={{ volgroup }}/{{ inventory_hostname }},cache=unsafe,io=threads
|
||||
--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,mac={{ mac_address }}
|
||||
--autostart --noautoconsole --watchdog default --rng /dev/random --cpu host
|
||||
|
||||
virt_install_command_two_nic_unsafe: virt-install -n {{ inventory_hostname }}
|
||||
--memory={{ mem_size }},maxmemory={{ max_mem_size }} --memballoon virtio
|
||||
--disk bus=virtio,path={{ volgroup }}/{{ inventory_hostname }},cache=unsafe,io=threads
|
||||
--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
|
||||
ip={{ eth1_ip }}:::{{ nm }}:{{ inventory_hostname }}-nfs:eth1:none'
|
||||
--network bridge={{ main_bridge }},model=virtio,mac={{ mac_address }}
|
||||
--network=bridge={{ nfs_bridge }},model=virtio,mac={{ mac_address1 }}
|
||||
--autostart --noautoconsole --watchdog default --rng /dev/random
|
||||
|
||||
virt_install_command_aarch64_one_nic: virt-install -n {{ inventory_hostname }}
|
||||
--memory={{ mem_size }},maxmemory={{ max_mem_size }} --memballoon virtio
|
||||
--disk bus=virtio,path={{ volgroup }}/{{ inventory_hostname }}
|
||||
|
|
|
@ -4,7 +4,7 @@ lvm_size: 100000
|
|||
mem_size: 131072
|
||||
max_mem_size: "{{ mem_size }}"
|
||||
num_cpus: 16
|
||||
virt_install_command: "{{ virt_install_command_two_nic }}"
|
||||
virt_install_command: "{{ virt_install_command_two_nic_unsafe }}"
|
||||
|
||||
nm: 255.255.255.0
|
||||
gw: 10.5.125.254
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue