ced8a4a528
While OVS was used initially due to availability of a networking-generic-switch driver for it, Linux bridge can be useful for environments where OVS is not available. This is configured via bridge_type variable. It defaults to 'openvswitch', but may be set to 'linuxbridge'. Change-Id: I750a73cebc743edcbcd8c23c67e4920d0058bead
32 lines
859 B
Django/Jinja
32 lines
859 B
Django/Jinja
---
|
|
# Use python3 on Ubuntu remote hosts.
|
|
ansible_python_interpreter: "{{ '/usr/bin/python3' if ansible_python.version.major == 3 else '/usr/bin/python2' }}"
|
|
|
|
# This file holds the config given to Tenks when running the zuul job,
|
|
# tenks-deploy-teardown. It assumes the existence of the bridge `breth1`.
|
|
|
|
node_types:
|
|
type0:
|
|
memory_mb: 1024
|
|
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
|
|
- capacity: 4GiB
|
|
physical_networks:
|
|
- physnet1
|
|
console_log_enabled: true
|
|
|
|
specs:
|
|
- type: type0
|
|
count: 2
|
|
|
|
nova_flavors: []
|
|
|
|
physnet_mappings:
|
|
physnet1: breth1
|
|
|
|
bridge_type: {{ bridge_type }}
|
|
|
|
python_upper_constraints_url: file://{{ upper_constraints_path }}
|