Add support for installing Fedora hosts
This commit is contained in:
parent
3173352222
commit
e1a5afcc86
1 changed files with 28 additions and 0 deletions
28
group_vars/fedora.yml
Normal file
28
group_vars/fedora.yml
Normal file
|
@ -0,0 +1,28 @@
|
|||
---
|
||||
# default resources for new vm
|
||||
dsk_size: 20
|
||||
mem_size: 2048
|
||||
num_cpus: 2
|
||||
|
||||
# extra args for virt-install
|
||||
ks_file: "{{ boot_url }}/ks/fedora.ks"
|
||||
ipcmd: >-
|
||||
{% if network_interfaces[0]['proto'] is defined %}
|
||||
{% if network_interfaces[0]['proto'] == 'static' %}
|
||||
{% set int=network_interfaces[0] %}
|
||||
{% if int['ipaddr'] is defined and int['gateway'] is defined %}
|
||||
nameserver=8.8.8.8
|
||||
ip={{ int['ipaddr'] }}::{{ int['gateway'] }}:{{ int['netmask'] }}::eth0:none
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
virt_install_os_args: >-
|
||||
--location
|
||||
https://nic.funet.fi/pub/mirrors/fedora.redhat.com/pub/fedora/linux/releases/37/Everything/x86_64/os/
|
||||
--extra-args
|
||||
"inst.ks={{ ks_file }}
|
||||
console=ttyS0
|
||||
net.ifnames=0
|
||||
bootdev=eth0
|
||||
{{ ipcmd }}"
|
||||
virt_install_os_variant: fedora-unknown
|
Loading…
Add table
Reference in a new issue