51b84b6001
* Change default seed VM image to CentOS 8 * Change default bifrost deploy image to CentOS 8 * Workaround DIB bug https://bugs.launchpad.net/diskimage-builder/+bug/1866847 by setting DIB_DISABLE_KERNEL_CLEANUP to 1 * Install iptables on seed for SNAT - missing on CentOS 8 * Fix provider network MTU lookup for empty string * Bump stackhpc.libvirt-host to 1.7.0 for CentOS 8 support * Bump stackhpc.libvirt-vm to 1.13.0 for CentOS 8 support * Bump jriguera.configdrive for Python 3 support Change-Id: Ie0edf6a924a914395c6502e2d5cf1139bce14a48 Story: 2006574 Task: 39000
51 lines
1.2 KiB
Plaintext
51 lines
1.2 KiB
Plaintext
---
|
|
###############################################################################
|
|
# Seed node VM configuration.
|
|
|
|
# Name of the seed VM.
|
|
seed_vm_name: "{{ inventory_hostname }}"
|
|
|
|
# Memory in MB.
|
|
seed_vm_memory_mb: "{{ 16 * 1024 }}"
|
|
|
|
# Number of vCPUs.
|
|
seed_vm_vcpus: 4
|
|
|
|
# List of volumes.
|
|
seed_vm_volumes:
|
|
- "{{ seed_vm_root_volume }}"
|
|
- "{{ seed_vm_data_volume }}"
|
|
|
|
# Root volume.
|
|
seed_vm_root_volume:
|
|
name: "{{ seed_vm_name }}-root"
|
|
pool: "{{ seed_vm_pool }}"
|
|
capacity: "{{ seed_vm_root_capacity }}"
|
|
format: "{{ seed_vm_root_format }}"
|
|
image: "{{ seed_vm_root_image }}"
|
|
|
|
# Data volume.
|
|
seed_vm_data_volume:
|
|
name: "{{ seed_vm_name }}-data"
|
|
pool: "{{ seed_vm_pool }}"
|
|
capacity: "{{ seed_vm_data_capacity }}"
|
|
format: "{{ seed_vm_data_format }}"
|
|
|
|
# Name of the storage pool for the seed VM volumes.
|
|
seed_vm_pool: default
|
|
|
|
# Capacity of the seed VM root volume.
|
|
seed_vm_root_capacity: 50G
|
|
|
|
# Format of the seed VM root volume.
|
|
seed_vm_root_format: qcow2
|
|
|
|
# Base image for the seed VM root volume.
|
|
seed_vm_root_image: "https://cloud.centos.org/centos/8/x86_64/images/CentOS-8-GenericCloud-8.1.1911-20200113.3.x86_64.qcow2"
|
|
|
|
# Capacity of the seed VM data volume.
|
|
seed_vm_data_capacity: 100G
|
|
|
|
# Format of the seed VM data volume.
|
|
seed_vm_data_format: qcow2
|