nvp_cluster_uuid is no longer used; it was missed
during the configuration file tweaks that was done
during Havana.
Change-Id: Id6dd684833c99453cd97d88584be04d99fd21550
Closes-bug: #
1251086
# tunneled isolated "Neutron" networks. This option MUST be specified, e.g.:
# default_tz_uuid = 1e8e52cf-fa7f-46b0-a14a-f99835a9cb53
-# (Optional) UUID of the cluster in NVP. It can be retrieved from NVP management
-# console "admin" section.
-# nvp_cluster_uuid = 615be8e4-82e9-4fd2-b4b3-fd141e51a5a7
-
# (Optional) UUID for the default l3 gateway service to use with this cluster.
# To be specified if planning to use logical routers with external gateways.
# default_l3_gw_service_uuid =
- default_tz_uuid: This is uuid of the default NVP Transport zone that
will be used for creating tunneled isolated "Neutron" networks. It
needs to be created in NVP before starting Neutron with the nvp plugin.
- - nvp_cluster_uuid: Optional paramter identifying the UUID of the cluster
- in NVP. This can be retrieved from NVP management console "admin" section.
- nvp_controllers: describes the list of controllers
More details can be found in etc/neutron/plugins/nicira/nvp.ini
"will be used for creating tunneled isolated "
"\"Neutron\" networks. It needs to be created in NVP "
"before starting Neutron with the nvp plugin.")),
- cfg.StrOpt('nvp_cluster_uuid',
- help=_("Optional paramter identifying the UUID of the cluster "
- "in NVP. This can be retrieved from NVP management "
- "console \"admin\" section.")),
cfg.StrOpt('default_l3_gw_service_uuid',
help=_("Unique identifier of the NVP L3 Gateway service "
"which will be used for implementing routers and "
[DEFAULT]
default_tz_uuid = fake_tz_uuid
nova_zone_id = whatever
-nvp_cluster_uuid = fake_cluster_uuid
nvp_controllers = fake_1, fake_2
nvp_user = foo
nvp_password = bar
[DEFAULT]
default_tz_uuid = fake_tz_uuid
nova_zone_id = whatever
-nvp_cluster_uuid = fake_cluster_uuid
nvp_controllers = fake_1, fake_2
nvp_user = foo
nvp_password = bar
cluster_opts = {'default_tz_uuid': uuidutils.generate_uuid(),
'default_l2_gw_service_uuid': uuidutils.generate_uuid(),
'default_l2_gw_service_uuid': uuidutils.generate_uuid(),
- 'nvp_cluster_uuid': uuidutils.generate_uuid(),
'nvp_user': 'foo',
'nvp_password': 'bar',
'req_timeout': 45,
self.assertEqual('stt', cfg.CONF.NVP.default_transport_type)
self.assertIsNone(cfg.CONF.default_tz_uuid)
- self.assertIsNone(cfg.CONF.nvp_cluster_uuid)
self.assertEqual('admin', cfg.CONF.nvp_user)
self.assertEqual('admin', cfg.CONF.nvp_password)
self.assertEqual(30, cfg.CONF.req_timeout)