From 44699c9a013ae26752e284b0ef784c5038b4df4b Mon Sep 17 00:00:00 2001 From: Christopher Brown Date: Mon, 3 Oct 2016 08:22:05 +0100 Subject: [PATCH] Fixes network name for tempest Since commit 48f1149459ecb9f3258cd8a93aee869243e0c9ed the network name has been "public" rather than "nova" Change-Id: I241db003c7a175477199290b1c7a747c6d201d5f Signed-off-by: Christopher Brown --- .../basic_deployment/basic_deployment_cli.rst | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/doc/source/basic_deployment/basic_deployment_cli.rst b/doc/source/basic_deployment/basic_deployment_cli.rst index d70ab692..0a167db0 100644 --- a/doc/source/basic_deployment/basic_deployment_cli.rst +++ b/doc/source/basic_deployment/basic_deployment_cli.rst @@ -422,13 +422,13 @@ Edit the address ranges, or use the necessary neutron commands to match the environment appropriately. This assumes a dedicated interface or native VLAN:: - neutron net-create nova --router:external --provider:network_type flat \ + neutron net-create public --router:external --provider:network_type flat \ --provider:physical_network datacentre - neutron subnet-create --name nova --disable-dhcp \ + neutron subnet-create --name public --disable-dhcp \ --allocation-pool start=172.16.23.140,end=172.16.23.240 \ - --gateway 172.16.23.251 nova 172.16.23.128/25 + --gateway 172.16.23.251 public 172.16.23.128/25 -The example shows naming the network "nova" because that will make tempest +The example shows naming the network "public" because that will make tempest tests to pass, based on the default floating pool name set in nova.conf. You can confirm that the network was created with:: @@ -439,17 +439,17 @@ Sample output of the command:: +--------------------------------------+-------------+-------------------------------------------------------+ | id | name | subnets | +--------------------------------------+-------------+-------------------------------------------------------+ - | d474fe1f-222d-4e32-802b-cde86e746a2a | nova | 01c5f621-1e0f-4b9d-9c30-7dc59592a52f 172.16.23.128/25 | + | d474fe1f-222d-4e32-802b-cde86e746a2a | public | 01c5f621-1e0f-4b9d-9c30-7dc59592a52f 172.16.23.128/25 | +--------------------------------------+-------------+-------------------------------------------------------+ To use a VLAN, the following example should work. Customize the address ranges and VLAN id based on the environment:: - neutron net-create nova --router:external --provider:network_type vlan \ + neutron net-create public --router:external --provider:network_type vlan \ --provider:physical_network datacentre --provider:segmentation_id 195 - neutron subnet-create --name nova --disable-dhcp \ + neutron subnet-create --name public --disable-dhcp \ --allocation-pool start=172.16.23.140,end=172.16.23.240 \ - --gateway 172.16.23.251 nova 172.16.23.128/25 + --gateway 172.16.23.251 public 172.16.23.128/25 Validate the Overcloud