Hide Forgot
This affects both, OSP 8 and OSP 9. Our default value for default_floating_pool is 'public' in both, OSP 8 and OSP 9: $ grep -r default_floating_pool /usr/share/openstack-tripleo-heat-templates/ /usr/share/openstack-tripleo-heat-templates/kilo/controller.yaml: default_floating_pool: /usr/share/openstack-tripleo-heat-templates/puppet/hieradata/controller.yaml.original:nova::api::default_floating_pool: 'public' /usr/share/openstack-tripleo-heat-templates/puppet/hieradata/controller.yaml:nova::api::default_floating_pool: 'public' /usr/share/openstack-tripleo-heat-templates/liberty/puppet/hieradata/controller.yaml:nova::api::default_floating_pool: 'public' But the documentation instructs us to create the external network with name 'nova' which is the upstream default name at: https://access.redhat.com/documentation/en/red-hat-openstack-platform/9/single/director-installation-and-usage#sect-Creating_the_Overcloud_External_Network $ source ~/overcloudrc $ neutron net-create nova --router:external --provider:network_type flat --provider:physical_network datacentre $ neutron subnet-create --name nova --enable_dhcp=False --allocation-pool=start=10.1.1.51,end=10.1.1.250 --gateway=10.1.1.1 nova 10.1.1.0/24 This leads to two related issues, 'nova floating-ip-create' not working and tempest tests such as 'tempest.scenario.test_volume_boot_pattern.TestVolumeBootPatternV2.test_volume_boot_pattern' failing
Hi Ramon, Have updated the external network to public: https://access.redhat.com/documentation/en/red-hat-openstack-platform/10/single/director-installation-and-usage/#sect-Creating_the_Overcloud_External_Network Was there anything else required for this BZ?
Hi Dan, nothing else. Thanks for updating the docs.
No prob. Thanks for reporting this.