d2e3f6f1ae
* add 'bridge_type: linuxbridge' to tenks configuration to avoid dependency on OVS * extend seed development environment testing to include overcloud provisioning and deployment * remove seed hypervisor and seed VM environments. These are very stale, and largely replaced by a-universe-from-nothing. Add a link to that workshop on the same page Change-Id: I9928e5912e6770bdcc1d5d0884d2f101c16ee6a9
43 lines
1.2 KiB
YAML
43 lines
1.2 KiB
YAML
---
|
|
# This file holds the config given to Tenks when running `tenks-deploy.sh`. It
|
|
# assumes the existence of the bridge `breth1`.
|
|
|
|
node_types:
|
|
type0:
|
|
memory_mb: 3072
|
|
vcpus: 1
|
|
volumes:
|
|
# There is a minimum disk space capacity requirement of 4GiB when using Ironic Python Agent:
|
|
# https://github.com/openstack/ironic-python-agent/blob/master/ironic_python_agent/utils.py#L290
|
|
# The CentOS8 cloud image seems to fill a 4GiB disk, so allow 6.
|
|
- capacity: 6GiB
|
|
physical_networks:
|
|
- physnet1
|
|
console_log_enabled: true
|
|
# We seem to hit issues with missing cpu features in CI as a result of using host-model, e.g:
|
|
# https://zuul.opendev.org/t/openstack/build/02c33ab51664419a88a5a54ad22852a9/log/primary/system_logs/libvirt/qemu/tk0.txt.gz#38
|
|
cpu_mode:
|
|
|
|
specs:
|
|
- type: type0
|
|
count: 1
|
|
ironic_config:
|
|
resource_class: test-rc
|
|
network_interface: noop
|
|
|
|
node_name_prefix: controller
|
|
|
|
nova_flavors: []
|
|
|
|
physnet_mappings:
|
|
physnet1: breth1
|
|
|
|
bridge_type: linuxbridge
|
|
|
|
# No placement service.
|
|
wait_for_placement: false
|
|
|
|
# Nested virtualisation is not working well in CI currently. Force the use of
|
|
# QEMU.
|
|
libvirt_vm_engine: "qemu"
|