blob: a885fbf16e01c203c4ded5dde05e20c27c906a5f [file] [log] [blame]
Sean M. Collins2a242512016-05-03 09:03:09 -04001#!/bin/bash
2#
3# lib/neutron
4# Install and start **Neutron** network services
5
6# Dependencies:
7#
8# ``functions`` file
9# ``DEST`` must be defined
10
11# ``stack.sh`` calls the entry points in this order:
12#
13# - is_XXXX_enabled
14# - install_XXXX
15# - configure_XXXX
16# - init_XXXX
17# - start_XXXX
18# - stop_XXXX
19# - cleanup_XXXX
20
21# Save trace setting
22XTRACE=$(set +o | grep xtrace)
23set +o xtrace
24
25# Defaults
26# --------
27
28# Set up default directories
29GITDIR["python-neutronclient"]=$DEST/python-neutronclient
30
Kevin Benton66b361b2017-06-13 00:31:01 -070031# NEUTRON_DEPLOY_MOD_WSGI defines how neutron is deployed, allowed values:
32# - False (default) : Run neutron under Eventlet
33# - True : Run neutron under uwsgi
34# TODO(annp): Switching to uwsgi in next cycle if things turn out to be stable
35# enough
Jens Harbott3492fee2018-11-30 13:57:17 +000036NEUTRON_DEPLOY_MOD_WSGI=$(trueorfalse False NEUTRON_DEPLOY_MOD_WSGI)
Sean M. Collins2a242512016-05-03 09:03:09 -040037NEUTRON_AGENT=${NEUTRON_AGENT:-openvswitch}
38NEUTRON_DIR=$DEST/neutron
Sean M. Collins2a242512016-05-03 09:03:09 -040039
Slawek Kaplonski24b65ad2021-06-22 15:31:46 +020040# If NEUTRON_ENFORCE_SCOPE == True, it will set "enforce_scope"
41# and "enforce_new_defaults" to True in the Neutron's config to enforce usage
42# of the new RBAC policies and scopes.
43NEUTRON_ENFORCE_SCOPE=$(trueorfalse False NEUTRON_ENFORCE_SCOPE)
44
Brian Haley9aaa5292017-09-20 14:23:05 -040045NEUTRON_DISTRIBUTED_ROUTING=$(trueorfalse False NEUTRON_DISTRIBUTED_ROUTING)
46# Distributed Virtual Router (DVR) configuration
47# Can be:
48# - ``legacy`` - No DVR functionality
49# - ``dvr_snat`` - Controller or single node DVR
50# - ``dvr`` - Compute node in multi-node DVR
51# - ``dvr_no_external`` - Compute node in multi-node DVR, no external network
52#
53# Default is 'dvr_snat' since it can handle both DVR and legacy routers
54NEUTRON_DVR_MODE=${NEUTRON_DVR_MODE:-dvr_snat}
55
Sean M. Collins2a242512016-05-03 09:03:09 -040056NEUTRON_BIN_DIR=$(get_python_exec_prefix)
57NEUTRON_DHCP_BINARY="neutron-dhcp-agent"
58
59NEUTRON_CONF_DIR=/etc/neutron
60NEUTRON_CONF=$NEUTRON_CONF_DIR/neutron.conf
61NEUTRON_META_CONF=$NEUTRON_CONF_DIR/metadata_agent.ini
Brian Haleya5491912019-07-31 12:18:39 -040062NEUTRON_META_DATA_HOST=${NEUTRON_META_DATA_HOST:-$(ipv6_unquote $SERVICE_HOST)}
Sean M. Collins2a242512016-05-03 09:03:09 -040063
64NEUTRON_DHCP_CONF=$NEUTRON_CONF_DIR/dhcp_agent.ini
65NEUTRON_L3_CONF=$NEUTRON_CONF_DIR/l3_agent.ini
66NEUTRON_AGENT_CONF=$NEUTRON_CONF_DIR/
Josh8f721622018-02-01 09:45:47 +020067NEUTRON_CREATE_INITIAL_NETWORKS=${NEUTRON_CREATE_INITIAL_NETWORKS:-True}
Sean M. Collins2a242512016-05-03 09:03:09 -040068
69NEUTRON_STATE_PATH=${NEUTRON_STATE_PATH:=$DATA_DIR/neutron}
Sean M. Collins2a242512016-05-03 09:03:09 -040070
Kevin Benton66b361b2017-06-13 00:31:01 -070071NEUTRON_UWSGI_CONF=$NEUTRON_CONF_DIR/neutron-api-uwsgi.ini
72
Sean M. Collins2a242512016-05-03 09:03:09 -040073# By default, use the ML2 plugin
YAMAMOTO Takashi4a55d2a2016-08-24 15:30:09 +090074NEUTRON_CORE_PLUGIN=${NEUTRON_CORE_PLUGIN:-ml2}
75NEUTRON_CORE_PLUGIN_CONF_FILENAME=${NEUTRON_CORE_PLUGIN_CONF_FILENAME:-ml2_conf.ini}
76NEUTRON_CORE_PLUGIN_CONF_PATH=$NEUTRON_CONF_DIR/plugins/$NEUTRON_CORE_PLUGIN
77NEUTRON_CORE_PLUGIN_CONF=$NEUTRON_CORE_PLUGIN_CONF_PATH/$NEUTRON_CORE_PLUGIN_CONF_FILENAME
Sean M. Collins2a242512016-05-03 09:03:09 -040078
Ihar Hrachyshkabf697f52017-02-23 12:09:01 +000079NEUTRON_METERING_AGENT_CONF_FILENAME=${NEUTRON_METERING_AGENT_CONF_FILENAME:-metering_agent.ini}
80NEUTRON_METERING_AGENT_CONF=$NEUTRON_CONF_DIR/$NEUTRON_METERING_AGENT_CONF_FILENAME
81
Sean M. Collins2a242512016-05-03 09:03:09 -040082NEUTRON_AGENT_BINARY=${NEUTRON_AGENT_BINARY:-neutron-$NEUTRON_AGENT-agent}
83NEUTRON_L3_BINARY=${NEUTRON_L3_BINARY:-neutron-l3-agent}
84NEUTRON_META_BINARY=${NEUTRON_META_BINARY:-neutron-metadata-agent}
Ihar Hrachyshkabf697f52017-02-23 12:09:01 +000085NEUTRON_METERING_BINARY=${NEUTRON_METERING_BINARY:-neutron-metering-agent}
Sean M. Collins2a242512016-05-03 09:03:09 -040086
87# Public facing bits
Sean Daguef3b2f4c2017-04-13 10:11:48 -040088if is_service_enabled tls-proxy; then
Sean M. Collins2a242512016-05-03 09:03:09 -040089 NEUTRON_SERVICE_PROTOCOL="https"
90fi
91NEUTRON_SERVICE_HOST=${NEUTRON_SERVICE_HOST:-$SERVICE_HOST}
92NEUTRON_SERVICE_PORT=${NEUTRON_SERVICE_PORT:-9696}
93NEUTRON_SERVICE_PORT_INT=${NEUTRON_SERVICE_PORT_INT:-19696}
94NEUTRON_SERVICE_PROTOCOL=${NEUTRON_SERVICE_PROTOCOL:-$SERVICE_PROTOCOL}
95
96NEUTRON_AUTH_STRATEGY=${NEUTRON_AUTH_STRATEGY:-keystone}
97NEUTRON_ROOTWRAP=$(get_rootwrap_location neutron)
98NEUTRON_ROOTWRAP_CONF_FILE=$NEUTRON_CONF_DIR/rootwrap.conf
Ihar Hrachyshkae65ab4a2017-02-24 17:47:55 +000099NEUTRON_ROOTWRAP_CMD="$NEUTRON_ROOTWRAP $NEUTRON_ROOTWRAP_CONF_FILE"
100NEUTRON_ROOTWRAP_DAEMON_CMD="$NEUTRON_ROOTWRAP-daemon $NEUTRON_ROOTWRAP_CONF_FILE"
Sean M. Collins2a242512016-05-03 09:03:09 -0400101
Ihar Hrachyshka615e1152017-02-23 10:41:51 +0000102# This is needed because _neutron_ovs_base_configure_l3_agent uses it to create
103# an external network bridge
104PUBLIC_BRIDGE=${PUBLIC_BRIDGE:-br-ex}
105PUBLIC_BRIDGE_MTU=${PUBLIC_BRIDGE_MTU:-1500}
106
Julia Kreger6e5b1382019-01-09 17:00:45 -0800107# Network type - default vxlan, however enables vlan based jobs to override
108# using the legacy environment variable as well as a new variable in greater
109# alignment with the naming scheme of this plugin.
110NEUTRON_TENANT_NETWORK_TYPE=${NEUTRON_TENANT_NETWORK_TYPE:-vxlan}
111
112NEUTRON_TENANT_VLAN_RANGE=${NEUTRON_TENANT_VLAN_RANGE:-${TENANT_VLAN_RANGE:-100:150}}
113
114# Physical network for VLAN network usage.
115NEUTRON_PHYSICAL_NETWORK=${NEUTRON_PHYSICAL_NETWORK:-}
116
Slawek Kaplonski1a21ccb2022-07-08 21:57:45 +0200117# The name of the service in the endpoint URL
118NEUTRON_ENDPOINT_SERVICE_NAME=${NEUTRON_ENDPOINT_SERVICE_NAME-"networking"}
119if [[ "$NEUTRON_DEPLOY_MOD_WSGI" == "True" && -z "$NEUTRON_ENDPOINT_SERVICE_NAME" ]]; then
120 NEUTRON_ENDPOINT_SERVICE_NAME="networking"
121fi
122
Julia Kreger6e5b1382019-01-09 17:00:45 -0800123
YAMAMOTO Takashieede9dd2016-07-15 10:27:53 +0900124# Additional neutron api config files
Sean Dagueafef8bf2017-03-06 14:07:23 -0500125declare -a -g _NEUTRON_SERVER_EXTRA_CONF_FILES_ABS
YAMAMOTO Takashieede9dd2016-07-15 10:27:53 +0900126
Sean M. Collins2a242512016-05-03 09:03:09 -0400127# Functions
128# ---------
129
130# Test if any Neutron services are enabled
131# is_neutron_enabled
132function is_neutron_enabled {
Clark Boylan902158b2017-05-30 14:11:09 -0700133 [[ ,${DISABLED_SERVICES} =~ ,"neutron" ]] && return 1
Sean M. Collins2a242512016-05-03 09:03:09 -0400134 [[ ,${ENABLED_SERVICES} =~ ,"neutron-" || ,${ENABLED_SERVICES} =~ ,"q-" ]] && return 0
135 return 1
136}
137
138# Test if any Neutron services are enabled
139# is_neutron_enabled
140function is_neutron_legacy_enabled {
Slawek Kaplonskia9a51ca2019-04-15 23:54:31 +0200141 # first we need to remove all "neutron-" from DISABLED_SERVICES list
142 disabled_services_copy=$(echo $DISABLED_SERVICES | sed 's/neutron-//g')
143 [[ ,${disabled_services_copy} =~ ,"neutron" ]] && return 1
Sean M. Collins2a242512016-05-03 09:03:09 -0400144 [[ ,${ENABLED_SERVICES} =~ ,"q-" ]] && return 0
145 return 1
146}
147
YAMAMOTO Takashic74315e2016-07-21 17:49:43 +0900148if is_neutron_legacy_enabled; then
149 source $TOP_DIR/lib/neutron-legacy
150fi
151
Sean M. Collins2a242512016-05-03 09:03:09 -0400152# cleanup_neutron() - Remove residual data files, anything left over from previous
153# runs that a clean run would need to clean up
154function cleanup_neutron_new {
elajkatc994dc42022-01-06 11:28:55 +0100155 deprecated "Using lib/neutron is deprecated, and it will be removed in AA release!"
Sean M. Collins2a242512016-05-03 09:03:09 -0400156 source $TOP_DIR/lib/neutron_plugins/${NEUTRON_AGENT}_agent
157 if is_neutron_ovs_base_plugin; then
158 neutron_ovs_base_cleanup
159 fi
160
161 if [[ $NEUTRON_AGENT == "linuxbridge" ]]; then
162 neutron_lb_cleanup
163 fi
164 # delete all namespaces created by neutron
165 for ns in $(sudo ip netns list | grep -o -E '(qdhcp|qrouter|qlbaas|fip|snat)-[0-9a-f-]*'); do
166 sudo ip netns delete ${ns}
167 done
168}
169
Ihar Hrachyshkae65ab4a2017-02-24 17:47:55 +0000170# configure_root_helper_options() - Configure agent rootwrap helper options
171function configure_root_helper_options {
172 local conffile=$1
173 iniset $conffile agent root_helper "sudo $NEUTRON_ROOTWRAP_CMD"
174 iniset $conffile agent root_helper_daemon "sudo $NEUTRON_ROOTWRAP_DAEMON_CMD"
175}
176
Sean M. Collins2a242512016-05-03 09:03:09 -0400177# configure_neutron() - Set config files, create data dirs, etc
178function configure_neutron_new {
elajkatc994dc42022-01-06 11:28:55 +0100179 deprecated "Using lib/neutron is deprecated, and it will be removed in AA release!"
Sean M. Collins2a242512016-05-03 09:03:09 -0400180 sudo install -d -o $STACK_USER $NEUTRON_CONF_DIR
181
182 (cd $NEUTRON_DIR && exec ./tools/generate_config_file_samples.sh)
183
184 cp $NEUTRON_DIR/etc/neutron.conf.sample $NEUTRON_CONF
185
186 configure_neutron_rootwrap
187
YAMAMOTO Takashi4a55d2a2016-08-24 15:30:09 +0900188 mkdir -p $NEUTRON_CORE_PLUGIN_CONF_PATH
Sean M. Collins2a242512016-05-03 09:03:09 -0400189
YAMAMOTO Takashi1df17c92017-05-01 17:00:42 +0900190 # NOTE(yamamoto): A decomposed plugin should prepare the config file in
191 # its devstack plugin.
192 if [ -f $NEUTRON_DIR/etc/neutron/plugins/$NEUTRON_CORE_PLUGIN/$NEUTRON_CORE_PLUGIN_CONF_FILENAME.sample ]; then
193 cp $NEUTRON_DIR/etc/neutron/plugins/$NEUTRON_CORE_PLUGIN/$NEUTRON_CORE_PLUGIN_CONF_FILENAME.sample $NEUTRON_CORE_PLUGIN_CONF
194 fi
Sean M. Collins2a242512016-05-03 09:03:09 -0400195
196 iniset $NEUTRON_CONF database connection `database_connection_url neutron`
197 iniset $NEUTRON_CONF DEFAULT state_path $NEUTRON_STATE_PATH
198 iniset $NEUTRON_CONF oslo_concurrency lock_path $NEUTRON_STATE_PATH/lock
199 iniset $NEUTRON_CONF DEFAULT use_syslog $SYSLOG
200
Gary Kottond2ef6152016-09-20 04:12:11 -0700201 iniset $NEUTRON_CONF DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL
Sean M. Collinsfbba3b92016-05-12 11:17:53 -0400202
Sean M. Collins5394cc12016-05-11 15:03:38 -0400203 iniset_rpc_backend neutron $NEUTRON_CONF
204
Sean M. Collins2a242512016-05-03 09:03:09 -0400205 # Neutron API server & Neutron plugin
206 if is_service_enabled neutron-api; then
207 local policy_file=$NEUTRON_CONF_DIR/policy.json
Sean M. Collins2a242512016-05-03 09:03:09 -0400208 # Allow neutron user to administer neutron to match neutron account
Akihiro Motoki80769c52018-11-23 05:18:40 +0900209 # NOTE(amotoki): This is required for nova works correctly with neutron.
210 if [ -f $NEUTRON_DIR/etc/policy.json ]; then
211 cp $NEUTRON_DIR/etc/policy.json $policy_file
212 sed -i 's/"context_is_admin": "role:admin"/"context_is_admin": "role:admin or user_name:neutron"/g' $policy_file
213 else
214 echo '{"context_is_admin": "role:admin or user_name:neutron"}' > $policy_file
215 fi
Sean M. Collins2a242512016-05-03 09:03:09 -0400216
217 cp $NEUTRON_DIR/etc/api-paste.ini $NEUTRON_CONF_DIR/api-paste.ini
218
YAMAMOTO Takashi4a55d2a2016-08-24 15:30:09 +0900219 iniset $NEUTRON_CONF DEFAULT core_plugin $NEUTRON_CORE_PLUGIN
Sean M. Collins2a242512016-05-03 09:03:09 -0400220
Sean M. Collins2a242512016-05-03 09:03:09 -0400221 iniset $NEUTRON_CONF DEFAULT policy_file $policy_file
222 iniset $NEUTRON_CONF DEFAULT allow_overlapping_ips True
Brian Haley9aaa5292017-09-20 14:23:05 -0400223 iniset $NEUTRON_CONF DEFAULT router_distributed $NEUTRON_DISTRIBUTED_ROUTING
Sean M. Collins2a242512016-05-03 09:03:09 -0400224
225 iniset $NEUTRON_CONF DEFAULT auth_strategy $NEUTRON_AUTH_STRATEGY
Dirk Mueller8ab64b32017-11-17 19:52:29 +0100226 configure_keystone_authtoken_middleware $NEUTRON_CONF neutron
227 configure_keystone_authtoken_middleware $NEUTRON_CONF nova nova
Sean M. Collins2a242512016-05-03 09:03:09 -0400228
Julia Kreger6e5b1382019-01-09 17:00:45 -0800229 # Configure tenant network type
230 iniset $NEUTRON_CORE_PLUGIN_CONF ml2 tenant_network_types $NEUTRON_TENANT_NETWORK_TYPE
Brian Haley9aaa5292017-09-20 14:23:05 -0400231
232 local mech_drivers="openvswitch"
233 if [[ "$NEUTRON_DISTRIBUTED_ROUTING" = "True" ]]; then
234 mech_drivers+=",l2population"
235 else
236 mech_drivers+=",linuxbridge"
237 fi
Takashi Kajinamicf0bf742022-07-13 22:34:47 +0900238 if [[ "$mech_drivers" == *"linuxbridge"* ]]; then
239 iniset $NEUTRON_CONF experimental linuxbridge True
240 fi
241
Brian Haley9aaa5292017-09-20 14:23:05 -0400242 iniset $NEUTRON_CORE_PLUGIN_CONF ml2 mechanism_drivers $mech_drivers
Brian Haleyc869d592020-02-28 14:55:08 -0500243 iniset $NEUTRON_CORE_PLUGIN_CONF ml2 overlay_ip_version $TUNNEL_IP_VERSION
Brian Haley9aaa5292017-09-20 14:23:05 -0400244
YAMAMOTO Takashi4a55d2a2016-08-24 15:30:09 +0900245 iniset $NEUTRON_CORE_PLUGIN_CONF ml2_type_vxlan vni_ranges 1001:2000
Harald Jensåsf1a794e2019-08-21 10:49:57 +0200246 iniset $NEUTRON_CORE_PLUGIN_CONF ml2_type_flat flat_networks $PUBLIC_NETWORK_NAME
Julia Kreger6e5b1382019-01-09 17:00:45 -0800247 if [[ "$NEUTRON_TENANT_NETWORK_TYPE" =~ "vlan" ]] && [[ "$NEUTRON_PHYSICAL_NETWORK" != "" ]]; then
248 iniset $NEUTRON_CORE_PLUGIN_CONF ml2_type_vlan network_vlan_ranges ${NEUTRON_PHYSICAL_NETWORK}:${NEUTRON_TENANT_VLAN_RANGE}
249 fi
Matt Riedemannc9c9d312016-09-15 20:33:22 -0400250 if [[ "$NEUTRON_PORT_SECURITY" = "True" ]]; then
Ihar Hrachyshkaf511c362017-03-07 06:31:49 +0000251 neutron_ml2_extension_driver_add port_security
Matt Riedemannc9c9d312016-09-15 20:33:22 -0400252 fi
Slawek Kaplonski24b65ad2021-06-22 15:31:46 +0200253 configure_rbac_policies
Sean M. Collins2a242512016-05-03 09:03:09 -0400254 fi
255
256 # Neutron OVS or LB agent
257 if is_service_enabled neutron-agent; then
YAMAMOTO Takashi4a55d2a2016-08-24 15:30:09 +0900258 iniset $NEUTRON_CORE_PLUGIN_CONF agent tunnel_types vxlan
259 iniset $NEUTRON_CORE_PLUGIN_CONF DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL
Ihar Hrachyshkae65ab4a2017-02-24 17:47:55 +0000260 configure_root_helper_options $NEUTRON_CORE_PLUGIN_CONF
Sean M. Collins2a242512016-05-03 09:03:09 -0400261
262 # Configure the neutron agent
263 if [[ $NEUTRON_AGENT == "linuxbridge" ]]; then
Sean M. Collinsedcb7e52016-12-15 11:29:28 -0500264 iniset $NEUTRON_CORE_PLUGIN_CONF securitygroup firewall_driver iptables
Brian Haleyc869d592020-02-28 14:55:08 -0500265 iniset $NEUTRON_CORE_PLUGIN_CONF vxlan local_ip $TUNNEL_ENDPOINT_IP
Jakub Libosvara99ab702018-05-14 16:12:52 +0200266 elif [[ $NEUTRON_AGENT == "openvswitch" ]]; then
267 iniset $NEUTRON_CORE_PLUGIN_CONF securitygroup firewall_driver openvswitch
Brian Haleyc869d592020-02-28 14:55:08 -0500268 iniset $NEUTRON_CORE_PLUGIN_CONF ovs local_ip $TUNNEL_ENDPOINT_IP
Brian Haley9aaa5292017-09-20 14:23:05 -0400269
270 if [[ "$NEUTRON_DISTRIBUTED_ROUTING" = "True" ]]; then
271 iniset $NEUTRON_CORE_PLUGIN_CONF agent l2_population True
272 iniset $NEUTRON_CORE_PLUGIN_CONF agent enable_distributed_routing True
Swaminathan Vasudevan9bf7e262019-05-02 13:45:46 -0700273 iniset $NEUTRON_CORE_PLUGIN_CONF agent arp_responder True
Brian Haley9aaa5292017-09-20 14:23:05 -0400274 fi
Sean M. Collins2a242512016-05-03 09:03:09 -0400275 fi
Ihar Hrachyshkab3a210f2016-09-29 13:26:30 +0000276
Denis Buliga0bf75a42017-02-06 16:56:46 +0200277 if ! running_in_container; then
278 enable_kernel_bridge_firewall
279 fi
Sean M. Collins2a242512016-05-03 09:03:09 -0400280 fi
281
282 # DHCP Agent
283 if is_service_enabled neutron-dhcp; then
284 cp $NEUTRON_DIR/etc/dhcp_agent.ini.sample $NEUTRON_DHCP_CONF
285
Gary Kottond2ef6152016-09-20 04:12:11 -0700286 iniset $NEUTRON_DHCP_CONF DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL
Sean Dague78801c12016-08-04 14:10:07 -0400287 # make it so we have working DNS from guests
288 iniset $NEUTRON_DHCP_CONF DEFAULT dnsmasq_local_resolv True
289
Ihar Hrachyshkae65ab4a2017-02-24 17:47:55 +0000290 configure_root_helper_options $NEUTRON_DHCP_CONF
Sean M. Collins2a242512016-05-03 09:03:09 -0400291 iniset $NEUTRON_DHCP_CONF DEFAULT interface_driver $NEUTRON_AGENT
292 neutron_plugin_configure_dhcp_agent $NEUTRON_DHCP_CONF
293 fi
294
295 if is_service_enabled neutron-l3; then
296 cp $NEUTRON_DIR/etc/l3_agent.ini.sample $NEUTRON_L3_CONF
297 iniset $NEUTRON_L3_CONF DEFAULT interface_driver $NEUTRON_AGENT
YAMAMOTO Takashid9ec4202016-07-21 16:14:52 +0900298 neutron_service_plugin_class_add router
Ihar Hrachyshkae65ab4a2017-02-24 17:47:55 +0000299 configure_root_helper_options $NEUTRON_L3_CONF
Gary Kottond2ef6152016-09-20 04:12:11 -0700300 iniset $NEUTRON_L3_CONF DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL
Sean M. Collins2a242512016-05-03 09:03:09 -0400301 neutron_plugin_configure_l3_agent $NEUTRON_L3_CONF
Ihar Hrachyshkae3915932017-02-24 06:24:47 +0000302
303 # Configure the neutron agent to serve external network ports
304 if [[ $NEUTRON_AGENT == "linuxbridge" ]]; then
305 iniset $NEUTRON_CORE_PLUGIN_CONF linux_bridge bridge_mappings "$PUBLIC_NETWORK_NAME:$PUBLIC_BRIDGE"
306 else
307 iniset $NEUTRON_CORE_PLUGIN_CONF ovs bridge_mappings "$PUBLIC_NETWORK_NAME:$PUBLIC_BRIDGE"
308 fi
Brian Haley9aaa5292017-09-20 14:23:05 -0400309
310 if [[ "$NEUTRON_DISTRIBUTED_ROUTING" = "True" ]]; then
311 iniset $NEUTRON_L3_CONF DEFAULT agent_mode $NEUTRON_DVR_MODE
312 fi
Sean M. Collins2a242512016-05-03 09:03:09 -0400313 fi
314
315 # Metadata
Sean M. Collins1cd28282016-05-11 15:07:19 -0400316 if is_service_enabled neutron-metadata-agent; then
Sean M. Collins2a242512016-05-03 09:03:09 -0400317 cp $NEUTRON_DIR/etc/metadata_agent.ini.sample $NEUTRON_META_CONF
318
Gary Kottond2ef6152016-09-20 04:12:11 -0700319 iniset $NEUTRON_META_CONF DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL
Brian Haleya5491912019-07-31 12:18:39 -0400320 iniset $NEUTRON_META_CONF DEFAULT nova_metadata_host $NEUTRON_META_DATA_HOST
Armando Migliaccio06f2ea22017-02-02 16:47:00 -0800321 iniset $NEUTRON_META_CONF DEFAULT metadata_workers $API_WORKERS
Ihar Hrachyshkae65ab4a2017-02-24 17:47:55 +0000322 # TODO(ihrachys) do we really need to set rootwrap for metadata agent?
323 configure_root_helper_options $NEUTRON_META_CONF
Sean M. Collins2a242512016-05-03 09:03:09 -0400324
325 # TODO(dtroyer): remove the v2.0 hard code below
Sean Daguec13b8a12017-04-20 06:54:51 -0400326 iniset $NEUTRON_META_CONF DEFAULT auth_url $KEYSTONE_SERVICE_URI
Dirk Mueller8ab64b32017-11-17 19:52:29 +0100327 configure_keystone_authtoken_middleware $NEUTRON_META_CONF neutron DEFAULT
Sean M. Collins2a242512016-05-03 09:03:09 -0400328 fi
329
330 # Format logging
Sean Dague27f66e92017-05-02 09:08:17 -0400331 setup_logging $NEUTRON_CONF
Sean M. Collins2a242512016-05-03 09:03:09 -0400332
Kevin Benton66b361b2017-06-13 00:31:01 -0700333 if is_service_enabled tls-proxy && [ "$NEUTRON_DEPLOY_MOD_WSGI" == "False" ]; then
Sean M. Collins2a242512016-05-03 09:03:09 -0400334 # Set the service port for a proxy to take the original
335 iniset $NEUTRON_CONF DEFAULT bind_port "$NEUTRON_SERVICE_PORT_INT"
Jens Harbott411c34d2017-08-29 14:40:26 +0000336 iniset $NEUTRON_CONF oslo_middleware enable_proxy_headers_parsing True
Sean M. Collins2a242512016-05-03 09:03:09 -0400337 fi
338
Sean M. Collins8063fee2016-05-24 11:27:36 -0700339 # Metering
340 if is_service_enabled neutron-metering; then
Ihar Hrachyshkabf697f52017-02-23 12:09:01 +0000341 cp $NEUTRON_DIR/etc/metering_agent.ini.sample $NEUTRON_METERING_AGENT_CONF
YAMAMOTO Takashid9ec4202016-07-21 16:14:52 +0900342 neutron_service_plugin_class_add metering
Sean M. Collins8063fee2016-05-24 11:27:36 -0700343 fi
Sean M. Collins2a242512016-05-03 09:03:09 -0400344}
345
346# configure_neutron_rootwrap() - configure Neutron's rootwrap
347function configure_neutron_rootwrap {
Sean M. Collins2a242512016-05-03 09:03:09 -0400348 # Deploy new rootwrap filters files (owned by root).
349 # Wipe any existing rootwrap.d files first
350 if [[ -d $NEUTRON_CONF_DIR/rootwrap.d ]]; then
351 sudo rm -rf $NEUTRON_CONF_DIR/rootwrap.d
352 fi
353
354 # Deploy filters to /etc/neutron/rootwrap.d
355 sudo install -d -o root -g root -m 755 $NEUTRON_CONF_DIR/rootwrap.d
356 sudo install -o root -g root -m 644 $NEUTRON_DIR/etc/neutron/rootwrap.d/*.filters $NEUTRON_CONF_DIR/rootwrap.d
357
358 # Set up ``rootwrap.conf``, pointing to ``$NEUTRON_CONF_DIR/rootwrap.d``
359 sudo install -o root -g root -m 644 $NEUTRON_DIR/etc/rootwrap.conf $NEUTRON_CONF_DIR
360 sudo sed -e "s:^filters_path=.*$:filters_path=$NEUTRON_CONF_DIR/rootwrap.d:" -i $NEUTRON_CONF_DIR/rootwrap.conf
361
362 # Set up the rootwrap sudoers for Neutron
363 tempfile=`mktemp`
Ihar Hrachyshkae65ab4a2017-02-24 17:47:55 +0000364 echo "$STACK_USER ALL=(root) NOPASSWD: $NEUTRON_ROOTWRAP_CMD *" >$tempfile
365 echo "$STACK_USER ALL=(root) NOPASSWD: $NEUTRON_ROOTWRAP_DAEMON_CMD" >>$tempfile
Sean M. Collins2a242512016-05-03 09:03:09 -0400366 chmod 0440 $tempfile
367 sudo chown root:root $tempfile
368 sudo mv $tempfile /etc/sudoers.d/neutron-rootwrap
369}
370
371# Make Neutron-required changes to nova.conf
Lucas Alvares Gomese6385932018-06-28 11:00:28 +0100372# Takes a single optional argument which is the config file to update,
373# if not passed $NOVA_CONF is used.
Sean M. Collins2a242512016-05-03 09:03:09 -0400374function configure_neutron_nova_new {
elajkatc994dc42022-01-06 11:28:55 +0100375 deprecated "Using lib/neutron is deprecated, and it will be removed in AA release!"
Lucas Alvares Gomese6385932018-06-28 11:00:28 +0100376 local conf=${1:-$NOVA_CONF}
Matt Riedemanne95f2a32018-06-18 16:17:29 -0400377 iniset $conf neutron auth_type "password"
378 iniset $conf neutron auth_url "$KEYSTONE_SERVICE_URI"
379 iniset $conf neutron username neutron
380 iniset $conf neutron password "$SERVICE_PASSWORD"
381 iniset $conf neutron user_domain_name "Default"
382 iniset $conf neutron project_name "$SERVICE_TENANT_NAME"
383 iniset $conf neutron project_domain_name "Default"
384 iniset $conf neutron auth_strategy $NEUTRON_AUTH_STRATEGY
385 iniset $conf neutron region_name "$REGION_NAME"
Sean M. Collins2a242512016-05-03 09:03:09 -0400386
Gary Kotton88f85582016-08-14 06:55:42 -0700387 # optionally set options in nova_conf
Matt Riedemanne95f2a32018-06-18 16:17:29 -0400388 neutron_plugin_create_nova_conf $conf
Gary Kotton88f85582016-08-14 06:55:42 -0700389
Sean M. Collins1cd28282016-05-11 15:07:19 -0400390 if is_service_enabled neutron-metadata-agent; then
Matt Riedemanne95f2a32018-06-18 16:17:29 -0400391 iniset $conf neutron service_metadata_proxy "True"
Sean M. Collins2a242512016-05-03 09:03:09 -0400392 fi
393
394}
395
396# Tenant User Roles
397# ------------------------------------------------------------------
398# service neutron admin # if enabled
399
400# create_neutron_accounts() - Create required service accounts
401function create_neutron_accounts_new {
elajkatc994dc42022-01-06 11:28:55 +0100402 deprecated "Using lib/neutron is deprecated, and it will be removed in AA release!"
Kevin Benton66b361b2017-06-13 00:31:01 -0700403 local neutron_url
404
405 if [ "$NEUTRON_DEPLOY_MOD_WSGI" == "True" ]; then
Slawek Kaplonski1a21ccb2022-07-08 21:57:45 +0200406 neutron_url=$NEUTRON_SERVICE_PROTOCOL://$NEUTRON_SERVICE_HOST/
Kevin Benton66b361b2017-06-13 00:31:01 -0700407 else
408 neutron_url=$NEUTRON_SERVICE_PROTOCOL://$NEUTRON_SERVICE_HOST:$NEUTRON_SERVICE_PORT/
409 fi
Slawek Kaplonski1a21ccb2022-07-08 21:57:45 +0200410 if [ ! -z "$NEUTRON_ENDPOINT_SERVICE_NAME" ]; then
411 neutron_url=$neutron_url$NEUTRON_ENDPOINT_SERVICE_NAME
412 fi
Kevin Benton66b361b2017-06-13 00:31:01 -0700413
414
Sean M. Collins2a242512016-05-03 09:03:09 -0400415 if [[ "$ENABLED_SERVICES" =~ "neutron-api" ]]; then
416
417 create_service_user "neutron"
418
419 neutron_service=$(get_or_create_service "neutron" \
420 "network" "Neutron Service")
421 get_or_create_endpoint $neutron_service \
Kevin Benton66b361b2017-06-13 00:31:01 -0700422 "$REGION_NAME" "$neutron_url"
Sean M. Collins2a242512016-05-03 09:03:09 -0400423 fi
424}
425
Sean M. Collins2a242512016-05-03 09:03:09 -0400426# init_neutron() - Initialize databases, etc.
427function init_neutron_new {
428
elajkatc994dc42022-01-06 11:28:55 +0100429 deprecated "Using lib/neutron is deprecated, and it will be removed in AA release!"
Sean M. Collins2a242512016-05-03 09:03:09 -0400430 recreate_database neutron
431
Clark Boylan633dbc32017-06-14 12:09:21 -0700432 time_start "dbsync"
Sean M. Collins2a242512016-05-03 09:03:09 -0400433 # Run Neutron db migrations
Ihar Hrachyshka19f4b3f2017-02-23 20:44:18 +0000434 $NEUTRON_BIN_DIR/neutron-db-manage upgrade heads
Clark Boylan633dbc32017-06-14 12:09:21 -0700435 time_stop "dbsync"
Sean M. Collins2a242512016-05-03 09:03:09 -0400436}
437
438# install_neutron() - Collect source and prepare
439function install_neutron_new {
elajkatc994dc42022-01-06 11:28:55 +0100440 deprecated "Using lib/neutron is deprecated, and it will be removed in AA release!"
Sean M. Collins2a242512016-05-03 09:03:09 -0400441 git_clone $NEUTRON_REPO $NEUTRON_DIR $NEUTRON_BRANCH
442 setup_develop $NEUTRON_DIR
443
444 # Install neutron-lib from git so we make sure we're testing
445 # the latest code.
446 if use_library_from_git "neutron-lib"; then
447 git_clone_by_name "neutron-lib"
448 setup_dev_lib "neutron-lib"
449 fi
450
451 # L3 service requires radvd
452 if is_service_enabled neutron-l3; then
453 install_package radvd
454 fi
455
456 if is_service_enabled neutron-agent neutron-dhcp neutron-l3; then
457 #TODO(sc68cal) - kind of ugly
458 source $TOP_DIR/lib/neutron_plugins/${NEUTRON_AGENT}_agent
459 neutron_plugin_install_agent_packages
460 fi
461
462}
463
464# install_neutronclient() - Collect source and prepare
465function install_neutronclient {
466 if use_library_from_git "python-neutronclient"; then
467 git_clone_by_name "python-neutronclient"
468 setup_dev_lib "python-neutronclient"
469 sudo install -D -m 0644 -o $STACK_USER {${GITDIR["python-neutronclient"]}/tools/,/etc/bash_completion.d/}neutron.bash_completion
470 fi
471}
472
473# start_neutron_api() - Start the API process ahead of other things
474function start_neutron_api {
475 local service_port=$NEUTRON_SERVICE_PORT
476 local service_protocol=$NEUTRON_SERVICE_PROTOCOL
Kevin Benton66b361b2017-06-13 00:31:01 -0700477 local neutron_url
Sean M. Collins2a242512016-05-03 09:03:09 -0400478 if is_service_enabled tls-proxy; then
479 service_port=$NEUTRON_SERVICE_PORT_INT
480 service_protocol="http"
481 fi
482
YAMAMOTO Takashied887d82017-02-22 14:21:33 -0500483 local opts=""
484 opts+=" --config-file $NEUTRON_CONF"
485 opts+=" --config-file $NEUTRON_CORE_PLUGIN_CONF"
YAMAMOTO Takashieede9dd2016-07-15 10:27:53 +0900486 local cfg_file
487 for cfg_file in ${_NEUTRON_SERVER_EXTRA_CONF_FILES_ABS[@]}; do
488 opts+=" --config-file $cfg_file"
489 done
490
Kevin Benton66b361b2017-06-13 00:31:01 -0700491 if [ "$NEUTRON_DEPLOY_MOD_WSGI" == "True" ]; then
Ian Wienand312517d2018-06-22 22:23:29 +1000492 run_process neutron-api "$(which uwsgi) --procname-prefix neutron-api --ini $NEUTRON_UWSGI_CONF"
Slawek Kaplonski1a21ccb2022-07-08 21:57:45 +0200493 neutron_url=$service_protocol://$NEUTRON_SERVICE_HOST/
Kevin Benton66b361b2017-06-13 00:31:01 -0700494 enable_service neutron-rpc-server
495 run_process neutron-rpc-server "$NEUTRON_BIN_DIR/neutron-rpc-server $opts"
496 else
497 # Start the Neutron service
498 # TODO(sc68cal) Stop hard coding this
499 run_process neutron-api "$NEUTRON_BIN_DIR/neutron-server $opts"
Slawek Kaplonski1a21ccb2022-07-08 21:57:45 +0200500 neutron_url=$service_protocol://$NEUTRON_SERVICE_HOST:$service_port/
Kevin Benton66b361b2017-06-13 00:31:01 -0700501 # Start proxy if enabled
502 if is_service_enabled tls-proxy; then
503 start_tls_proxy neutron '*' $NEUTRON_SERVICE_PORT $NEUTRON_SERVICE_HOST $NEUTRON_SERVICE_PORT_INT
504 fi
Sean M. Collins2a242512016-05-03 09:03:09 -0400505 fi
Slawek Kaplonski1a21ccb2022-07-08 21:57:45 +0200506 if [ ! -z "$NEUTRON_ENDPOINT_SERVICE_NAME" ]; then
507 neutron_url=$neutron_url$NEUTRON_ENDPOINT_SERVICE_NAME
508 fi
Sean M. Collins2a242512016-05-03 09:03:09 -0400509
Kevin Benton66b361b2017-06-13 00:31:01 -0700510 if ! wait_for_service $SERVICE_TIMEOUT $neutron_url; then
511 die $LINENO "neutron-api did not start"
Sean M. Collins2a242512016-05-03 09:03:09 -0400512 fi
513}
514
Sean Dague0eebeb42017-08-30 14:16:58 -0400515# start_neutron() - Start running processes
Sean M. Collins2a242512016-05-03 09:03:09 -0400516function start_neutron_new {
elajkatc994dc42022-01-06 11:28:55 +0100517 deprecated "Using lib/neutron is deprecated, and it will be removed in AA release!"
Sean M. Collins2a242512016-05-03 09:03:09 -0400518 # Start up the neutron agents if enabled
519 # TODO(sc68cal) Make this pluggable so different DevStack plugins for different Neutron plugins
520 # can resolve the $NEUTRON_AGENT_BINARY
521 if is_service_enabled neutron-agent; then
Ihar Hrachyshka19f4b3f2017-02-23 20:44:18 +0000522 # TODO(ihrachys) stop loading ml2_conf.ini into agents, instead load agent specific files
523 run_process neutron-agent "$NEUTRON_BIN_DIR/$NEUTRON_AGENT_BINARY --config-file $NEUTRON_CONF --config-file $NEUTRON_CORE_PLUGIN_CONF"
Sean M. Collins2a242512016-05-03 09:03:09 -0400524 fi
525 if is_service_enabled neutron-dhcp; then
526 neutron_plugin_configure_dhcp_agent $NEUTRON_DHCP_CONF
Ihar Hrachyshka19f4b3f2017-02-23 20:44:18 +0000527 run_process neutron-dhcp "$NEUTRON_BIN_DIR/$NEUTRON_DHCP_BINARY --config-file $NEUTRON_CONF --config-file $NEUTRON_DHCP_CONF"
Sean M. Collins2a242512016-05-03 09:03:09 -0400528 fi
529 if is_service_enabled neutron-l3; then
Ihar Hrachyshka19f4b3f2017-02-23 20:44:18 +0000530 run_process neutron-l3 "$NEUTRON_BIN_DIR/$NEUTRON_L3_BINARY --config-file $NEUTRON_CONF --config-file $NEUTRON_L3_CONF"
YAMAMOTO Takashic07170a2016-07-20 19:44:05 +0900531 fi
Josh8f721622018-02-01 09:45:47 +0200532 if is_service_enabled neutron-api && [[ "$NEUTRON_CREATE_INITIAL_NETWORKS" == "True" ]]; then
YAMAMOTO Takashi07edde12016-10-19 19:21:00 +0000533 # XXX(sc68cal) - Here's where plugins can wire up their own networks instead
534 # of the code in lib/neutron_plugins/services/l3
535 if type -p neutron_plugin_create_initial_networks > /dev/null; then
536 neutron_plugin_create_initial_networks
537 else
538 # XXX(sc68cal) Load up the built in Neutron networking code and build a topology
539 source $TOP_DIR/lib/neutron_plugins/services/l3
540 # Create the networks using servic
541 create_neutron_initial_network
542 fi
Sean M. Collins2a242512016-05-03 09:03:09 -0400543 fi
Sean M. Collins1cd28282016-05-11 15:07:19 -0400544 if is_service_enabled neutron-metadata-agent; then
Ihar Hrachyshka19f4b3f2017-02-23 20:44:18 +0000545 run_process neutron-metadata-agent "$NEUTRON_BIN_DIR/$NEUTRON_META_BINARY --config-file $NEUTRON_CONF --config-file $NEUTRON_META_CONF"
Sean M. Collins2a242512016-05-03 09:03:09 -0400546 fi
Sean M. Collins8063fee2016-05-24 11:27:36 -0700547
548 if is_service_enabled neutron-metering; then
Ihar Hrachyshka868746b2017-09-13 15:44:18 -0600549 run_process neutron-metering "$NEUTRON_BIN_DIR/$NEUTRON_METERING_BINARY --config-file $NEUTRON_CONF --config-file $NEUTRON_METERING_AGENT_CONF"
Sean M. Collins8063fee2016-05-24 11:27:36 -0700550 fi
Sean M. Collins2a242512016-05-03 09:03:09 -0400551}
552
Sean Dague0eebeb42017-08-30 14:16:58 -0400553# stop_neutron() - Stop running processes
Sean M. Collins2a242512016-05-03 09:03:09 -0400554function stop_neutron_new {
elajkatc994dc42022-01-06 11:28:55 +0100555 deprecated "Using lib/neutron is deprecated, and it will be removed in AA release!"
Sean M. Collins2a242512016-05-03 09:03:09 -0400556 for serv in neutron-api neutron-agent neutron-l3; do
557 stop_process $serv
558 done
559
Kevin Benton66b361b2017-06-13 00:31:01 -0700560 if is_service_enabled neutron-rpc-server; then
561 stop_process neutron-rpc-server
562 fi
563
Sean M. Collins2a242512016-05-03 09:03:09 -0400564 if is_service_enabled neutron-dhcp; then
565 stop_process neutron-dhcp
566 pid=$(ps aux | awk '/[d]nsmasq.+interface=(tap|ns-)/ { print $2 }')
567 [ ! -z "$pid" ] && sudo kill -9 $pid
568 fi
569
Sean M. Collins1cd28282016-05-11 15:07:19 -0400570 if is_service_enabled neutron-metadata-agent; then
Sean M. Collins2a242512016-05-03 09:03:09 -0400571 sudo pkill -9 -f neutron-ns-metadata-proxy || :
Sean M. Collins1cd28282016-05-11 15:07:19 -0400572 stop_process neutron-metadata-agent
Sean M. Collins2a242512016-05-03 09:03:09 -0400573 fi
574}
575
YAMAMOTO Takashid9ec4202016-07-21 16:14:52 +0900576# neutron_service_plugin_class_add() - add service plugin class
577function neutron_service_plugin_class_add_new {
elajkatc994dc42022-01-06 11:28:55 +0100578 deprecated "Using lib/neutron is deprecated, and it will be removed in AA release!"
YAMAMOTO Takashid9ec4202016-07-21 16:14:52 +0900579 local service_plugin_class=$1
580 local plugins=""
581
582 plugins=$(iniget $NEUTRON_CONF DEFAULT service_plugins)
YAMAMOTO Takashi84e45c92017-02-22 14:25:14 -0500583 if [ $plugins ]; then
584 plugins+=","
585 fi
586 plugins+="${service_plugin_class}"
YAMAMOTO Takashid9ec4202016-07-21 16:14:52 +0900587 iniset $NEUTRON_CONF DEFAULT service_plugins $plugins
588}
589
Ihar Hrachyshkaf511c362017-03-07 06:31:49 +0000590function _neutron_ml2_extension_driver_add {
591 local driver=$1
592 local drivers=""
593
594 drivers=$(iniget $NEUTRON_CORE_PLUGIN_CONF ml2 extension_drivers)
595 if [ $drivers ]; then
596 drivers+=","
597 fi
598 drivers+="${driver}"
599 iniset $NEUTRON_CORE_PLUGIN_CONF ml2 extension_drivers $drivers
600}
601
YAMAMOTO Takashieede9dd2016-07-15 10:27:53 +0900602function neutron_server_config_add_new {
elajkatc994dc42022-01-06 11:28:55 +0100603 deprecated "Using lib/neutron is deprecated, and it will be removed in AA release!"
YAMAMOTO Takashieede9dd2016-07-15 10:27:53 +0900604 _NEUTRON_SERVER_EXTRA_CONF_FILES_ABS+=($1)
605}
606
YAMAMOTO Takashic043b6f2017-02-23 22:30:08 -0500607# neutron_deploy_rootwrap_filters() - deploy rootwrap filters
608function neutron_deploy_rootwrap_filters_new {
elajkatc994dc42022-01-06 11:28:55 +0100609 deprecated "Using lib/neutron is deprecated, and it will be removed in AA release!"
YAMAMOTO Takashic043b6f2017-02-23 22:30:08 -0500610 local srcdir=$1
611 sudo install -d -o root -g root -m 755 $NEUTRON_CONF_DIR/rootwrap.d
612 sudo install -o root -g root -m 644 $srcdir/etc/neutron/rootwrap.d/*.filters $NEUTRON_CONF_DIR/rootwrap.d
613}
614
Sean M. Collins2a242512016-05-03 09:03:09 -0400615# Dispatch functions
616# These are needed for compatibility between the old and new implementations
617# where there are function name overlaps. These will be removed when
618# neutron-legacy is removed.
619# TODO(sc68cal) Remove when neutron-legacy is no more.
620function cleanup_neutron {
Kevin Benton66b361b2017-06-13 00:31:01 -0700621 if [ "$NEUTRON_DEPLOY_MOD_WSGI" == "True" ]; then
622 stop_process neutron-api
623 stop_process neutron-rpc-server
624 remove_uwsgi_config "$NEUTRON_UWSGI_CONF" "$NEUTRON_BIN_DIR/neutron-api"
625 sudo rm -f $(apache_site_config_for neutron-api)
626 fi
627
Sean M. Collins2a242512016-05-03 09:03:09 -0400628 if is_neutron_legacy_enabled; then
629 # Call back to old function
630 cleanup_mutnauq "$@"
631 else
632 cleanup_neutron_new "$@"
633 fi
634}
635
636function configure_neutron {
637 if is_neutron_legacy_enabled; then
638 # Call back to old function
639 configure_mutnauq "$@"
640 else
641 configure_neutron_new "$@"
642 fi
Kevin Benton66b361b2017-06-13 00:31:01 -0700643
644 if [ "$NEUTRON_DEPLOY_MOD_WSGI" == "True" ]; then
645 write_uwsgi_config "$NEUTRON_UWSGI_CONF" "$NEUTRON_BIN_DIR/neutron-api" "/networking"
646 fi
Sean M. Collins2a242512016-05-03 09:03:09 -0400647}
648
Slawek Kaplonski24b65ad2021-06-22 15:31:46 +0200649# configure_rbac_policies() - Configure Neutron to enforce new RBAC
650# policies and scopes if NEUTRON_ENFORCE_SCOPE == True
651function configure_rbac_policies {
Grzegorz Grasza86155632021-10-18 16:52:06 +0200652 if [[ "$NEUTRON_ENFORCE_SCOPE" == "True" || "ENFORCE_SCOPE" == "True" ]]; then
Slawek Kaplonski24b65ad2021-06-22 15:31:46 +0200653 iniset $NEUTRON_CONF oslo_policy enforce_new_defaults True
654 iniset $NEUTRON_CONF oslo_policy enforce_scope True
655 else
656 iniset $NEUTRON_CONF oslo_policy enforce_new_defaults False
657 iniset $NEUTRON_CONF oslo_policy enforce_scope False
658 fi
659}
660
661
Sean M. Collins2a242512016-05-03 09:03:09 -0400662function configure_neutron_nova {
663 if is_neutron_legacy_enabled; then
664 # Call back to old function
Matt Riedemanne95f2a32018-06-18 16:17:29 -0400665 create_nova_conf_neutron $NOVA_CONF
666 if [[ "${CELLSV2_SETUP}" == "superconductor" ]]; then
667 for i in $(seq 1 $NOVA_NUM_CELLS); do
668 local conf
669 conf=$(conductor_conf $i)
670 create_nova_conf_neutron $conf
671 done
672 fi
Sean M. Collins2a242512016-05-03 09:03:09 -0400673 else
Matt Riedemanne95f2a32018-06-18 16:17:29 -0400674 configure_neutron_nova_new $NOVA_CONF
675 if [[ "${CELLSV2_SETUP}" == "superconductor" ]]; then
676 for i in $(seq 1 $NOVA_NUM_CELLS); do
677 local conf
678 conf=$(conductor_conf $i)
679 configure_neutron_nova_new $conf
680 done
681 fi
Sean M. Collins2a242512016-05-03 09:03:09 -0400682 fi
683}
684
685function create_neutron_accounts {
686 if is_neutron_legacy_enabled; then
687 # Call back to old function
688 create_mutnauq_accounts "$@"
689 else
690 create_neutron_accounts_new "$@"
691 fi
692}
693
694function init_neutron {
695 if is_neutron_legacy_enabled; then
696 # Call back to old function
697 init_mutnauq "$@"
698 else
699 init_neutron_new "$@"
700 fi
701}
702
703function install_neutron {
704 if is_neutron_legacy_enabled; then
705 # Call back to old function
706 install_mutnauq "$@"
707 else
708 install_neutron_new "$@"
709 fi
710}
711
YAMAMOTO Takashid9ec4202016-07-21 16:14:52 +0900712function neutron_service_plugin_class_add {
713 if is_neutron_legacy_enabled; then
714 # Call back to old function
715 _neutron_service_plugin_class_add "$@"
716 else
717 neutron_service_plugin_class_add_new "$@"
718 fi
719}
720
Ihar Hrachyshkaf511c362017-03-07 06:31:49 +0000721function neutron_ml2_extension_driver_add {
722 if is_neutron_legacy_enabled; then
723 # Call back to old function
724 _neutron_ml2_extension_driver_add_old "$@"
725 else
726 _neutron_ml2_extension_driver_add "$@"
727 fi
728}
729
YAMAMOTO Takashic74315e2016-07-21 17:49:43 +0900730function install_neutron_agent_packages {
731 if is_neutron_legacy_enabled; then
732 # Call back to old function
733 install_neutron_agent_packages_mutnauq "$@"
734 else
735 :
736 fi
737}
738
YAMAMOTO Takashieede9dd2016-07-15 10:27:53 +0900739function neutron_server_config_add {
740 if is_neutron_legacy_enabled; then
741 # Call back to old function
742 mutnauq_server_config_add "$@"
743 else
744 neutron_server_config_add_new "$@"
745 fi
746}
747
Sean M. Collins2a242512016-05-03 09:03:09 -0400748function start_neutron {
749 if is_neutron_legacy_enabled; then
750 # Call back to old function
751 start_mutnauq_l2_agent "$@"
752 start_mutnauq_other_agents "$@"
753 else
754 start_neutron_new "$@"
755 fi
756}
757
758function stop_neutron {
759 if is_neutron_legacy_enabled; then
760 # Call back to old function
761 stop_mutnauq "$@"
762 else
763 stop_neutron_new "$@"
764 fi
765}
766
YAMAMOTO Takashic043b6f2017-02-23 22:30:08 -0500767function neutron_deploy_rootwrap_filters {
768 if is_neutron_legacy_enabled; then
769 # Call back to old function
770 _neutron_deploy_rootwrap_filters "$@"
771 else
772 neutron_deploy_rootwrap_filters_new "$@"
773 fi
774}
775
Sean M. Collins2a242512016-05-03 09:03:09 -0400776# Restore xtrace
777$XTRACE