mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-03-31 01:11:36 +08:00
21 lines
848 B
Plaintext
21 lines
848 B
Plaintext
---
|
|
# Define resources for this group of hosts here.
|
|
lvm_size: 30000
|
|
mem_size: 4096
|
|
num_cpus: 1
|
|
|
|
# for systems that do not match the above - specify the same parameter in
|
|
# the host_vars/$hostname file
|
|
|
|
fas_client_groups: sysadmin-qa
|
|
|
|
# default virt install command is for a single nic-device
|
|
# define in another group file for more nics (see buildvm)
|
|
virt_install_command: /usr/sbin/virt-install -n {{ inventory_hostname }} -r {{ mem_size }}
|
|
--disk bus=virtio,path={{ volgroup }}/{{ inventory_hostname }}
|
|
--vcpus={{ num_cpus }} -l {{ ks_repo }} -x
|
|
"ks={{ ks_url }} ip={{ eth0_ip }} netmask={{ nm }}
|
|
gateway={{ gw }} dns={{ dns }} console=tty0 console=ttyS0
|
|
hostname={{ inventory_hostname }}"
|
|
--network=bridge=br0 --autostart --noautoconsole
|