Handle Pike changes for Neutron
- Updated default quotas to match Neutron upstream. - Renamed configuration options to match upstream - Removed deprecations Change-Id: I2e5a2ad84fdaa0caee81ee2b63eb9897465d6345
This commit is contained in:
parent
962cd92243
commit
ae1b961146
@ -82,6 +82,8 @@ neutron_agent_down_time: 120
|
|||||||
neutron_agent_polling_interval: 5
|
neutron_agent_polling_interval: 5
|
||||||
neutron_report_interval: "{{ neutron_agent_down_time | int / 2 | int }}"
|
neutron_report_interval: "{{ neutron_agent_down_time | int / 2 | int }}"
|
||||||
|
|
||||||
|
# TODO(evrardjp): Remove this when vpnaas/Dragonflow don't use it anymore.
|
||||||
|
# This was deprecated in Pike cycle.
|
||||||
neutron_external_network_bridge: ""
|
neutron_external_network_bridge: ""
|
||||||
|
|
||||||
neutron_dns_domain: "openstacklocal."
|
neutron_dns_domain: "openstacklocal."
|
||||||
@ -157,15 +159,15 @@ neutron_default_quota: -1
|
|||||||
neutron_quota_floatingip: 50
|
neutron_quota_floatingip: 50
|
||||||
neutron_quota_health_monitor: -1
|
neutron_quota_health_monitor: -1
|
||||||
neutron_quota_member: -1
|
neutron_quota_member: -1
|
||||||
neutron_quota_network: 10
|
neutron_quota_network: 100
|
||||||
neutron_quota_network_gateway: 5
|
neutron_quota_network_gateway: 5
|
||||||
neutron_quota_packet_filter: 100
|
neutron_quota_packet_filter: 100
|
||||||
neutron_quota_pool: 10
|
neutron_quota_pool: 10
|
||||||
neutron_quota_port: 50
|
neutron_quota_port: 500
|
||||||
neutron_quota_router: 10
|
neutron_quota_router: 10
|
||||||
neutron_quota_security_group: 10
|
neutron_quota_security_group: 10
|
||||||
neutron_quota_security_group_rule: 100
|
neutron_quota_security_group_rule: 100
|
||||||
neutron_quota_subnet: 10
|
neutron_quota_subnet: 100
|
||||||
neutron_quota_vip: 10
|
neutron_quota_vip: 10
|
||||||
|
|
||||||
###
|
###
|
||||||
@ -305,8 +307,6 @@ neutron_local_ip: 127.0.0.1
|
|||||||
### L3 Agent Plugin Configuration
|
### L3 Agent Plugin Configuration
|
||||||
###
|
###
|
||||||
|
|
||||||
neutron_gateway_external_network_id: ""
|
|
||||||
|
|
||||||
# Set this option to "true" to enable legacy neutron L3HA tool support
|
# Set this option to "true" to enable legacy neutron L3HA tool support
|
||||||
# TODO(cloudnull): Remove this in the Ocata cycle
|
# TODO(cloudnull): Remove this in the Ocata cycle
|
||||||
neutron_legacy_ha_tool_enabled: false
|
neutron_legacy_ha_tool_enabled: false
|
||||||
|
@ -0,0 +1,6 @@
|
|||||||
|
---
|
||||||
|
upgrade:
|
||||||
|
- |
|
||||||
|
Default quotas were bumped for the following resources:
|
||||||
|
networks (from 10 to 100), subnets (from 10 to 100), ports (from 50 to
|
||||||
|
500) to match upstream defaults.
|
@ -4,12 +4,6 @@
|
|||||||
[DEFAULT]
|
[DEFAULT]
|
||||||
debug = {{ debug }}
|
debug = {{ debug }}
|
||||||
|
|
||||||
# While this option is deprecated in Liberty, if we remove it then it takes
|
|
||||||
# a default value of 'br-ex', which we do not want. We therefore leave it
|
|
||||||
# in place for now and can remove it in Mitaka.
|
|
||||||
external_network_bridge = {{ neutron_external_network_bridge }}
|
|
||||||
gateway_external_network_id = {{ neutron_gateway_external_network_id }}
|
|
||||||
|
|
||||||
# Drivers
|
# Drivers
|
||||||
interface_driver = {{ neutron_plugins[neutron_plugin_type].driver_interface }}
|
interface_driver = {{ neutron_plugins[neutron_plugin_type].driver_interface }}
|
||||||
|
|
||||||
|
@ -219,7 +219,6 @@ def l3_agent_rebalance(qclient, noop=False):
|
|||||||
# u'id': u'6efe494a-616c-41ea-9c8f-2c592f4d46ff',
|
# u'id': u'6efe494a-616c-41ea-9c8f-2c592f4d46ff',
|
||||||
# u'configurations': {
|
# u'configurations': {
|
||||||
# u'router_id': u'',
|
# u'router_id': u'',
|
||||||
# u'gateway_external_network_id': u'',
|
|
||||||
# u'handle_internal_only_routers': True,
|
# u'handle_internal_only_routers': True,
|
||||||
# u'use_namespaces': True,
|
# u'use_namespaces': True,
|
||||||
# u'routers': 5,
|
# u'routers': 5,
|
||||||
@ -570,7 +569,6 @@ def list_agents(qclient, agent_type=None):
|
|||||||
# u'id': u'6efe494a-616c-41ea-9c8f-2c592f4d46ff',
|
# u'id': u'6efe494a-616c-41ea-9c8f-2c592f4d46ff',
|
||||||
# u'configurations': {
|
# u'configurations': {
|
||||||
# u'router_id': u'',
|
# u'router_id': u'',
|
||||||
# u'gateway_external_network_id': u'',
|
|
||||||
# u'handle_internal_only_routers': True,
|
# u'handle_internal_only_routers': True,
|
||||||
# u'use_namespaces': True,
|
# u'use_namespaces': True,
|
||||||
# u'routers': 5,
|
# u'routers': 5,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user