From e1613200f8a5b7ade26eedd1aa7970407b00ab6d Mon Sep 17 00:00:00 2001 From: Brendan Shephard Date: Wed, 17 Nov 2021 12:41:35 +1000 Subject: [PATCH] Set neutron_driver to null With neutron_driver set to openvswitch, the overcloud deploy is trying to pull OVN containers. Setting it to null as per the guide: https://access.redhat.com/documentation/en-us/red_hat_openstack_platform/16.1/html-single/network_functions_virtualization_planning_and_configuration_guide/index#deploying_rhosp_with_the_ovs_mechanism_driver With this set to null, we should exit here: https://github.com/openstack/tripleo-common/blob/stable/train/tripleo_common/update.py#L50-L52 Else openvswitch is in the constants.EXCLUSIVE_NEUTRON_DRIVERS list: https://github.com/openstack/tripleo-common/blob/stable/train/tripleo_common/constants.py#L219 Resolves: 03082681 --- .../config_files/containers-prepare-parameter.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Openstack_2.x_Build_Instructions/config_files/containers-prepare-parameter.yaml b/Openstack_2.x_Build_Instructions/config_files/containers-prepare-parameter.yaml index ab971ab..e96259a 100644 --- a/Openstack_2.x_Build_Instructions/config_files/containers-prepare-parameter.yaml +++ b/Openstack_2.x_Build_Instructions/config_files/containers-prepare-parameter.yaml @@ -26,11 +26,11 @@ parameter_defaults: name_prefix: openstack- name_suffix: '' namespace: registry.redhat.io/rhosp-rhel8 - neutron_driver: openvswitch + neutron_driver: null rhel_containers: false tag: '16.1' tag_from_label: '{version}-{release}' ContainerImageRegistryCredentials: registry.redhat.io: # my_username: my_password - gmarx09: password \ No newline at end of file + gmarx09: password