Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 1 | #!/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 |
| 22 | XTRACE=$(set +o | grep xtrace) |
| 23 | set +o xtrace |
| 24 | |
| 25 | # Defaults |
| 26 | # -------- |
| 27 | |
| 28 | # Set up default directories |
| 29 | GITDIR["python-neutronclient"]=$DEST/python-neutronclient |
| 30 | |
Kevin Benton | 66b361b | 2017-06-13 00:31:01 -0700 | [diff] [blame] | 31 | # 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 Harbott | 3492fee | 2018-11-30 13:57:17 +0000 | [diff] [blame] | 36 | NEUTRON_DEPLOY_MOD_WSGI=$(trueorfalse False NEUTRON_DEPLOY_MOD_WSGI) |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 37 | NEUTRON_AGENT=${NEUTRON_AGENT:-openvswitch} |
| 38 | NEUTRON_DIR=$DEST/neutron |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 39 | |
Brian Haley | 9aaa529 | 2017-09-20 14:23:05 -0400 | [diff] [blame] | 40 | NEUTRON_DISTRIBUTED_ROUTING=$(trueorfalse False NEUTRON_DISTRIBUTED_ROUTING) |
| 41 | # Distributed Virtual Router (DVR) configuration |
| 42 | # Can be: |
| 43 | # - ``legacy`` - No DVR functionality |
| 44 | # - ``dvr_snat`` - Controller or single node DVR |
| 45 | # - ``dvr`` - Compute node in multi-node DVR |
| 46 | # - ``dvr_no_external`` - Compute node in multi-node DVR, no external network |
| 47 | # |
| 48 | # Default is 'dvr_snat' since it can handle both DVR and legacy routers |
| 49 | NEUTRON_DVR_MODE=${NEUTRON_DVR_MODE:-dvr_snat} |
| 50 | |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 51 | NEUTRON_BIN_DIR=$(get_python_exec_prefix) |
| 52 | NEUTRON_DHCP_BINARY="neutron-dhcp-agent" |
| 53 | |
| 54 | NEUTRON_CONF_DIR=/etc/neutron |
| 55 | NEUTRON_CONF=$NEUTRON_CONF_DIR/neutron.conf |
| 56 | NEUTRON_META_CONF=$NEUTRON_CONF_DIR/metadata_agent.ini |
| 57 | |
| 58 | NEUTRON_DHCP_CONF=$NEUTRON_CONF_DIR/dhcp_agent.ini |
| 59 | NEUTRON_L3_CONF=$NEUTRON_CONF_DIR/l3_agent.ini |
| 60 | NEUTRON_AGENT_CONF=$NEUTRON_CONF_DIR/ |
Josh | 8f72162 | 2018-02-01 09:45:47 +0200 | [diff] [blame] | 61 | NEUTRON_CREATE_INITIAL_NETWORKS=${NEUTRON_CREATE_INITIAL_NETWORKS:-True} |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 62 | |
| 63 | NEUTRON_STATE_PATH=${NEUTRON_STATE_PATH:=$DATA_DIR/neutron} |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 64 | |
Kevin Benton | 66b361b | 2017-06-13 00:31:01 -0700 | [diff] [blame] | 65 | NEUTRON_UWSGI_CONF=$NEUTRON_CONF_DIR/neutron-api-uwsgi.ini |
| 66 | |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 67 | # By default, use the ML2 plugin |
YAMAMOTO Takashi | 4a55d2a | 2016-08-24 15:30:09 +0900 | [diff] [blame] | 68 | NEUTRON_CORE_PLUGIN=${NEUTRON_CORE_PLUGIN:-ml2} |
| 69 | NEUTRON_CORE_PLUGIN_CONF_FILENAME=${NEUTRON_CORE_PLUGIN_CONF_FILENAME:-ml2_conf.ini} |
| 70 | NEUTRON_CORE_PLUGIN_CONF_PATH=$NEUTRON_CONF_DIR/plugins/$NEUTRON_CORE_PLUGIN |
| 71 | NEUTRON_CORE_PLUGIN_CONF=$NEUTRON_CORE_PLUGIN_CONF_PATH/$NEUTRON_CORE_PLUGIN_CONF_FILENAME |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 72 | |
Ihar Hrachyshka | bf697f5 | 2017-02-23 12:09:01 +0000 | [diff] [blame] | 73 | NEUTRON_METERING_AGENT_CONF_FILENAME=${NEUTRON_METERING_AGENT_CONF_FILENAME:-metering_agent.ini} |
| 74 | NEUTRON_METERING_AGENT_CONF=$NEUTRON_CONF_DIR/$NEUTRON_METERING_AGENT_CONF_FILENAME |
| 75 | |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 76 | NEUTRON_AGENT_BINARY=${NEUTRON_AGENT_BINARY:-neutron-$NEUTRON_AGENT-agent} |
| 77 | NEUTRON_L3_BINARY=${NEUTRON_L3_BINARY:-neutron-l3-agent} |
| 78 | NEUTRON_META_BINARY=${NEUTRON_META_BINARY:-neutron-metadata-agent} |
Ihar Hrachyshka | bf697f5 | 2017-02-23 12:09:01 +0000 | [diff] [blame] | 79 | NEUTRON_METERING_BINARY=${NEUTRON_METERING_BINARY:-neutron-metering-agent} |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 80 | |
| 81 | # Public facing bits |
Sean Dague | f3b2f4c | 2017-04-13 10:11:48 -0400 | [diff] [blame] | 82 | if is_service_enabled tls-proxy; then |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 83 | NEUTRON_SERVICE_PROTOCOL="https" |
| 84 | fi |
| 85 | NEUTRON_SERVICE_HOST=${NEUTRON_SERVICE_HOST:-$SERVICE_HOST} |
| 86 | NEUTRON_SERVICE_PORT=${NEUTRON_SERVICE_PORT:-9696} |
| 87 | NEUTRON_SERVICE_PORT_INT=${NEUTRON_SERVICE_PORT_INT:-19696} |
| 88 | NEUTRON_SERVICE_PROTOCOL=${NEUTRON_SERVICE_PROTOCOL:-$SERVICE_PROTOCOL} |
| 89 | |
| 90 | NEUTRON_AUTH_STRATEGY=${NEUTRON_AUTH_STRATEGY:-keystone} |
| 91 | NEUTRON_ROOTWRAP=$(get_rootwrap_location neutron) |
| 92 | NEUTRON_ROOTWRAP_CONF_FILE=$NEUTRON_CONF_DIR/rootwrap.conf |
Ihar Hrachyshka | e65ab4a | 2017-02-24 17:47:55 +0000 | [diff] [blame] | 93 | NEUTRON_ROOTWRAP_CMD="$NEUTRON_ROOTWRAP $NEUTRON_ROOTWRAP_CONF_FILE" |
| 94 | NEUTRON_ROOTWRAP_DAEMON_CMD="$NEUTRON_ROOTWRAP-daemon $NEUTRON_ROOTWRAP_CONF_FILE" |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 95 | |
Ihar Hrachyshka | 615e115 | 2017-02-23 10:41:51 +0000 | [diff] [blame] | 96 | # This is needed because _neutron_ovs_base_configure_l3_agent uses it to create |
| 97 | # an external network bridge |
| 98 | PUBLIC_BRIDGE=${PUBLIC_BRIDGE:-br-ex} |
| 99 | PUBLIC_BRIDGE_MTU=${PUBLIC_BRIDGE_MTU:-1500} |
| 100 | |
YAMAMOTO Takashi | eede9dd | 2016-07-15 10:27:53 +0900 | [diff] [blame] | 101 | # Additional neutron api config files |
Sean Dague | afef8bf | 2017-03-06 14:07:23 -0500 | [diff] [blame] | 102 | declare -a -g _NEUTRON_SERVER_EXTRA_CONF_FILES_ABS |
YAMAMOTO Takashi | eede9dd | 2016-07-15 10:27:53 +0900 | [diff] [blame] | 103 | |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 104 | # Functions |
| 105 | # --------- |
| 106 | |
| 107 | # Test if any Neutron services are enabled |
| 108 | # is_neutron_enabled |
| 109 | function is_neutron_enabled { |
Clark Boylan | 902158b | 2017-05-30 14:11:09 -0700 | [diff] [blame] | 110 | [[ ,${DISABLED_SERVICES} =~ ,"neutron" ]] && return 1 |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 111 | [[ ,${ENABLED_SERVICES} =~ ,"neutron-" || ,${ENABLED_SERVICES} =~ ,"q-" ]] && return 0 |
| 112 | return 1 |
| 113 | } |
| 114 | |
| 115 | # Test if any Neutron services are enabled |
| 116 | # is_neutron_enabled |
| 117 | function is_neutron_legacy_enabled { |
Slawek Kaplonski | a9a51ca | 2019-04-15 23:54:31 +0200 | [diff] [blame] | 118 | # first we need to remove all "neutron-" from DISABLED_SERVICES list |
| 119 | disabled_services_copy=$(echo $DISABLED_SERVICES | sed 's/neutron-//g') |
| 120 | [[ ,${disabled_services_copy} =~ ,"neutron" ]] && return 1 |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 121 | [[ ,${ENABLED_SERVICES} =~ ,"q-" ]] && return 0 |
| 122 | return 1 |
| 123 | } |
| 124 | |
YAMAMOTO Takashi | c74315e | 2016-07-21 17:49:43 +0900 | [diff] [blame] | 125 | if is_neutron_legacy_enabled; then |
| 126 | source $TOP_DIR/lib/neutron-legacy |
| 127 | fi |
| 128 | |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 129 | # cleanup_neutron() - Remove residual data files, anything left over from previous |
| 130 | # runs that a clean run would need to clean up |
| 131 | function cleanup_neutron_new { |
| 132 | source $TOP_DIR/lib/neutron_plugins/${NEUTRON_AGENT}_agent |
| 133 | if is_neutron_ovs_base_plugin; then |
| 134 | neutron_ovs_base_cleanup |
| 135 | fi |
| 136 | |
| 137 | if [[ $NEUTRON_AGENT == "linuxbridge" ]]; then |
| 138 | neutron_lb_cleanup |
| 139 | fi |
| 140 | # delete all namespaces created by neutron |
| 141 | for ns in $(sudo ip netns list | grep -o -E '(qdhcp|qrouter|qlbaas|fip|snat)-[0-9a-f-]*'); do |
| 142 | sudo ip netns delete ${ns} |
| 143 | done |
| 144 | } |
| 145 | |
Ihar Hrachyshka | e65ab4a | 2017-02-24 17:47:55 +0000 | [diff] [blame] | 146 | # configure_root_helper_options() - Configure agent rootwrap helper options |
| 147 | function configure_root_helper_options { |
| 148 | local conffile=$1 |
| 149 | iniset $conffile agent root_helper "sudo $NEUTRON_ROOTWRAP_CMD" |
| 150 | iniset $conffile agent root_helper_daemon "sudo $NEUTRON_ROOTWRAP_DAEMON_CMD" |
| 151 | } |
| 152 | |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 153 | # configure_neutron() - Set config files, create data dirs, etc |
| 154 | function configure_neutron_new { |
| 155 | sudo install -d -o $STACK_USER $NEUTRON_CONF_DIR |
| 156 | |
| 157 | (cd $NEUTRON_DIR && exec ./tools/generate_config_file_samples.sh) |
| 158 | |
| 159 | cp $NEUTRON_DIR/etc/neutron.conf.sample $NEUTRON_CONF |
| 160 | |
| 161 | configure_neutron_rootwrap |
| 162 | |
YAMAMOTO Takashi | 4a55d2a | 2016-08-24 15:30:09 +0900 | [diff] [blame] | 163 | mkdir -p $NEUTRON_CORE_PLUGIN_CONF_PATH |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 164 | |
YAMAMOTO Takashi | 1df17c9 | 2017-05-01 17:00:42 +0900 | [diff] [blame] | 165 | # NOTE(yamamoto): A decomposed plugin should prepare the config file in |
| 166 | # its devstack plugin. |
| 167 | if [ -f $NEUTRON_DIR/etc/neutron/plugins/$NEUTRON_CORE_PLUGIN/$NEUTRON_CORE_PLUGIN_CONF_FILENAME.sample ]; then |
| 168 | cp $NEUTRON_DIR/etc/neutron/plugins/$NEUTRON_CORE_PLUGIN/$NEUTRON_CORE_PLUGIN_CONF_FILENAME.sample $NEUTRON_CORE_PLUGIN_CONF |
| 169 | fi |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 170 | |
| 171 | iniset $NEUTRON_CONF database connection `database_connection_url neutron` |
| 172 | iniset $NEUTRON_CONF DEFAULT state_path $NEUTRON_STATE_PATH |
| 173 | iniset $NEUTRON_CONF oslo_concurrency lock_path $NEUTRON_STATE_PATH/lock |
| 174 | iniset $NEUTRON_CONF DEFAULT use_syslog $SYSLOG |
| 175 | |
Gary Kotton | d2ef615 | 2016-09-20 04:12:11 -0700 | [diff] [blame] | 176 | iniset $NEUTRON_CONF DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL |
Sean M. Collins | fbba3b9 | 2016-05-12 11:17:53 -0400 | [diff] [blame] | 177 | |
Sean M. Collins | 5394cc1 | 2016-05-11 15:03:38 -0400 | [diff] [blame] | 178 | iniset_rpc_backend neutron $NEUTRON_CONF |
| 179 | |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 180 | # Neutron API server & Neutron plugin |
| 181 | if is_service_enabled neutron-api; then |
| 182 | local policy_file=$NEUTRON_CONF_DIR/policy.json |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 183 | # Allow neutron user to administer neutron to match neutron account |
Akihiro Motoki | 80769c5 | 2018-11-23 05:18:40 +0900 | [diff] [blame] | 184 | # NOTE(amotoki): This is required for nova works correctly with neutron. |
| 185 | if [ -f $NEUTRON_DIR/etc/policy.json ]; then |
| 186 | cp $NEUTRON_DIR/etc/policy.json $policy_file |
| 187 | sed -i 's/"context_is_admin": "role:admin"/"context_is_admin": "role:admin or user_name:neutron"/g' $policy_file |
| 188 | else |
| 189 | echo '{"context_is_admin": "role:admin or user_name:neutron"}' > $policy_file |
| 190 | fi |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 191 | |
| 192 | cp $NEUTRON_DIR/etc/api-paste.ini $NEUTRON_CONF_DIR/api-paste.ini |
| 193 | |
YAMAMOTO Takashi | 4a55d2a | 2016-08-24 15:30:09 +0900 | [diff] [blame] | 194 | iniset $NEUTRON_CONF DEFAULT core_plugin $NEUTRON_CORE_PLUGIN |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 195 | |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 196 | iniset $NEUTRON_CONF DEFAULT policy_file $policy_file |
| 197 | iniset $NEUTRON_CONF DEFAULT allow_overlapping_ips True |
Brian Haley | 9aaa529 | 2017-09-20 14:23:05 -0400 | [diff] [blame] | 198 | iniset $NEUTRON_CONF DEFAULT router_distributed $NEUTRON_DISTRIBUTED_ROUTING |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 199 | |
| 200 | iniset $NEUTRON_CONF DEFAULT auth_strategy $NEUTRON_AUTH_STRATEGY |
Dirk Mueller | 8ab64b3 | 2017-11-17 19:52:29 +0100 | [diff] [blame^] | 201 | configure_keystone_authtoken_middleware $NEUTRON_CONF neutron |
| 202 | configure_keystone_authtoken_middleware $NEUTRON_CONF nova nova |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 203 | |
| 204 | # Configure VXLAN |
| 205 | # TODO(sc68cal) not hardcode? |
YAMAMOTO Takashi | 4a55d2a | 2016-08-24 15:30:09 +0900 | [diff] [blame] | 206 | iniset $NEUTRON_CORE_PLUGIN_CONF ml2 tenant_network_types vxlan |
Brian Haley | 9aaa529 | 2017-09-20 14:23:05 -0400 | [diff] [blame] | 207 | |
| 208 | local mech_drivers="openvswitch" |
| 209 | if [[ "$NEUTRON_DISTRIBUTED_ROUTING" = "True" ]]; then |
| 210 | mech_drivers+=",l2population" |
| 211 | else |
| 212 | mech_drivers+=",linuxbridge" |
| 213 | fi |
| 214 | iniset $NEUTRON_CORE_PLUGIN_CONF ml2 mechanism_drivers $mech_drivers |
| 215 | |
YAMAMOTO Takashi | 4a55d2a | 2016-08-24 15:30:09 +0900 | [diff] [blame] | 216 | iniset $NEUTRON_CORE_PLUGIN_CONF ml2_type_vxlan vni_ranges 1001:2000 |
Sean M. Collins | edcb7e5 | 2016-12-15 11:29:28 -0500 | [diff] [blame] | 217 | iniset $NEUTRON_CORE_PLUGIN_CONF ml2_type_flat flat_networks public |
Matt Riedemann | c9c9d31 | 2016-09-15 20:33:22 -0400 | [diff] [blame] | 218 | if [[ "$NEUTRON_PORT_SECURITY" = "True" ]]; then |
Ihar Hrachyshka | f511c36 | 2017-03-07 06:31:49 +0000 | [diff] [blame] | 219 | neutron_ml2_extension_driver_add port_security |
Matt Riedemann | c9c9d31 | 2016-09-15 20:33:22 -0400 | [diff] [blame] | 220 | fi |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 221 | fi |
| 222 | |
| 223 | # Neutron OVS or LB agent |
| 224 | if is_service_enabled neutron-agent; then |
YAMAMOTO Takashi | 4a55d2a | 2016-08-24 15:30:09 +0900 | [diff] [blame] | 225 | iniset $NEUTRON_CORE_PLUGIN_CONF agent tunnel_types vxlan |
| 226 | iniset $NEUTRON_CORE_PLUGIN_CONF DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL |
Ihar Hrachyshka | e65ab4a | 2017-02-24 17:47:55 +0000 | [diff] [blame] | 227 | configure_root_helper_options $NEUTRON_CORE_PLUGIN_CONF |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 228 | |
| 229 | # Configure the neutron agent |
| 230 | if [[ $NEUTRON_AGENT == "linuxbridge" ]]; then |
Sean M. Collins | edcb7e5 | 2016-12-15 11:29:28 -0500 | [diff] [blame] | 231 | iniset $NEUTRON_CORE_PLUGIN_CONF securitygroup firewall_driver iptables |
YAMAMOTO Takashi | 4a55d2a | 2016-08-24 15:30:09 +0900 | [diff] [blame] | 232 | iniset $NEUTRON_CORE_PLUGIN_CONF vxlan local_ip $HOST_IP |
Jakub Libosvar | a99ab70 | 2018-05-14 16:12:52 +0200 | [diff] [blame] | 233 | elif [[ $NEUTRON_AGENT == "openvswitch" ]]; then |
| 234 | iniset $NEUTRON_CORE_PLUGIN_CONF securitygroup firewall_driver openvswitch |
YAMAMOTO Takashi | 4a55d2a | 2016-08-24 15:30:09 +0900 | [diff] [blame] | 235 | iniset $NEUTRON_CORE_PLUGIN_CONF ovs local_ip $HOST_IP |
Brian Haley | 9aaa529 | 2017-09-20 14:23:05 -0400 | [diff] [blame] | 236 | |
| 237 | if [[ "$NEUTRON_DISTRIBUTED_ROUTING" = "True" ]]; then |
| 238 | iniset $NEUTRON_CORE_PLUGIN_CONF agent l2_population True |
| 239 | iniset $NEUTRON_CORE_PLUGIN_CONF agent enable_distributed_routing True |
| 240 | fi |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 241 | fi |
Ihar Hrachyshka | b3a210f | 2016-09-29 13:26:30 +0000 | [diff] [blame] | 242 | |
Denis Buliga | 0bf75a4 | 2017-02-06 16:56:46 +0200 | [diff] [blame] | 243 | if ! running_in_container; then |
| 244 | enable_kernel_bridge_firewall |
| 245 | fi |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 246 | fi |
| 247 | |
| 248 | # DHCP Agent |
| 249 | if is_service_enabled neutron-dhcp; then |
| 250 | cp $NEUTRON_DIR/etc/dhcp_agent.ini.sample $NEUTRON_DHCP_CONF |
| 251 | |
Gary Kotton | d2ef615 | 2016-09-20 04:12:11 -0700 | [diff] [blame] | 252 | iniset $NEUTRON_DHCP_CONF DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL |
Sean Dague | 78801c1 | 2016-08-04 14:10:07 -0400 | [diff] [blame] | 253 | # make it so we have working DNS from guests |
| 254 | iniset $NEUTRON_DHCP_CONF DEFAULT dnsmasq_local_resolv True |
| 255 | |
Ihar Hrachyshka | e65ab4a | 2017-02-24 17:47:55 +0000 | [diff] [blame] | 256 | configure_root_helper_options $NEUTRON_DHCP_CONF |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 257 | iniset $NEUTRON_DHCP_CONF DEFAULT interface_driver $NEUTRON_AGENT |
| 258 | neutron_plugin_configure_dhcp_agent $NEUTRON_DHCP_CONF |
| 259 | fi |
| 260 | |
| 261 | if is_service_enabled neutron-l3; then |
| 262 | cp $NEUTRON_DIR/etc/l3_agent.ini.sample $NEUTRON_L3_CONF |
| 263 | iniset $NEUTRON_L3_CONF DEFAULT interface_driver $NEUTRON_AGENT |
YAMAMOTO Takashi | d9ec420 | 2016-07-21 16:14:52 +0900 | [diff] [blame] | 264 | neutron_service_plugin_class_add router |
Ihar Hrachyshka | e65ab4a | 2017-02-24 17:47:55 +0000 | [diff] [blame] | 265 | configure_root_helper_options $NEUTRON_L3_CONF |
Gary Kotton | d2ef615 | 2016-09-20 04:12:11 -0700 | [diff] [blame] | 266 | iniset $NEUTRON_L3_CONF DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 267 | neutron_plugin_configure_l3_agent $NEUTRON_L3_CONF |
Ihar Hrachyshka | e391593 | 2017-02-24 06:24:47 +0000 | [diff] [blame] | 268 | |
| 269 | # Configure the neutron agent to serve external network ports |
| 270 | if [[ $NEUTRON_AGENT == "linuxbridge" ]]; then |
| 271 | iniset $NEUTRON_CORE_PLUGIN_CONF linux_bridge bridge_mappings "$PUBLIC_NETWORK_NAME:$PUBLIC_BRIDGE" |
| 272 | else |
| 273 | iniset $NEUTRON_CORE_PLUGIN_CONF ovs bridge_mappings "$PUBLIC_NETWORK_NAME:$PUBLIC_BRIDGE" |
| 274 | fi |
Brian Haley | 9aaa529 | 2017-09-20 14:23:05 -0400 | [diff] [blame] | 275 | |
| 276 | if [[ "$NEUTRON_DISTRIBUTED_ROUTING" = "True" ]]; then |
| 277 | iniset $NEUTRON_L3_CONF DEFAULT agent_mode $NEUTRON_DVR_MODE |
| 278 | fi |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 279 | fi |
| 280 | |
| 281 | # Metadata |
Sean M. Collins | 1cd2828 | 2016-05-11 15:07:19 -0400 | [diff] [blame] | 282 | if is_service_enabled neutron-metadata-agent; then |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 283 | cp $NEUTRON_DIR/etc/metadata_agent.ini.sample $NEUTRON_META_CONF |
| 284 | |
Gary Kotton | d2ef615 | 2016-09-20 04:12:11 -0700 | [diff] [blame] | 285 | iniset $NEUTRON_META_CONF DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL |
Ken'ichi Ohmichi | 2da019f | 2017-10-11 09:57:25 -0700 | [diff] [blame] | 286 | iniset $NEUTRON_META_CONF DEFAULT nova_metadata_host $SERVICE_HOST |
Armando Migliaccio | 06f2ea2 | 2017-02-02 16:47:00 -0800 | [diff] [blame] | 287 | iniset $NEUTRON_META_CONF DEFAULT metadata_workers $API_WORKERS |
Ihar Hrachyshka | e65ab4a | 2017-02-24 17:47:55 +0000 | [diff] [blame] | 288 | # TODO(ihrachys) do we really need to set rootwrap for metadata agent? |
| 289 | configure_root_helper_options $NEUTRON_META_CONF |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 290 | |
| 291 | # TODO(dtroyer): remove the v2.0 hard code below |
Sean Dague | c13b8a1 | 2017-04-20 06:54:51 -0400 | [diff] [blame] | 292 | iniset $NEUTRON_META_CONF DEFAULT auth_url $KEYSTONE_SERVICE_URI |
Dirk Mueller | 8ab64b3 | 2017-11-17 19:52:29 +0100 | [diff] [blame^] | 293 | configure_keystone_authtoken_middleware $NEUTRON_META_CONF neutron DEFAULT |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 294 | fi |
| 295 | |
| 296 | # Format logging |
Sean Dague | 27f66e9 | 2017-05-02 09:08:17 -0400 | [diff] [blame] | 297 | setup_logging $NEUTRON_CONF |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 298 | |
Kevin Benton | 66b361b | 2017-06-13 00:31:01 -0700 | [diff] [blame] | 299 | if is_service_enabled tls-proxy && [ "$NEUTRON_DEPLOY_MOD_WSGI" == "False" ]; then |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 300 | # Set the service port for a proxy to take the original |
| 301 | iniset $NEUTRON_CONF DEFAULT bind_port "$NEUTRON_SERVICE_PORT_INT" |
Jens Harbott | 411c34d | 2017-08-29 14:40:26 +0000 | [diff] [blame] | 302 | iniset $NEUTRON_CONF oslo_middleware enable_proxy_headers_parsing True |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 303 | fi |
| 304 | |
Sean M. Collins | 8063fee | 2016-05-24 11:27:36 -0700 | [diff] [blame] | 305 | # Metering |
| 306 | if is_service_enabled neutron-metering; then |
Ihar Hrachyshka | bf697f5 | 2017-02-23 12:09:01 +0000 | [diff] [blame] | 307 | cp $NEUTRON_DIR/etc/metering_agent.ini.sample $NEUTRON_METERING_AGENT_CONF |
YAMAMOTO Takashi | d9ec420 | 2016-07-21 16:14:52 +0900 | [diff] [blame] | 308 | neutron_service_plugin_class_add metering |
Sean M. Collins | 8063fee | 2016-05-24 11:27:36 -0700 | [diff] [blame] | 309 | fi |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 310 | } |
| 311 | |
| 312 | # configure_neutron_rootwrap() - configure Neutron's rootwrap |
| 313 | function configure_neutron_rootwrap { |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 314 | # Deploy new rootwrap filters files (owned by root). |
| 315 | # Wipe any existing rootwrap.d files first |
| 316 | if [[ -d $NEUTRON_CONF_DIR/rootwrap.d ]]; then |
| 317 | sudo rm -rf $NEUTRON_CONF_DIR/rootwrap.d |
| 318 | fi |
| 319 | |
| 320 | # Deploy filters to /etc/neutron/rootwrap.d |
| 321 | sudo install -d -o root -g root -m 755 $NEUTRON_CONF_DIR/rootwrap.d |
| 322 | sudo install -o root -g root -m 644 $NEUTRON_DIR/etc/neutron/rootwrap.d/*.filters $NEUTRON_CONF_DIR/rootwrap.d |
| 323 | |
| 324 | # Set up ``rootwrap.conf``, pointing to ``$NEUTRON_CONF_DIR/rootwrap.d`` |
| 325 | sudo install -o root -g root -m 644 $NEUTRON_DIR/etc/rootwrap.conf $NEUTRON_CONF_DIR |
| 326 | sudo sed -e "s:^filters_path=.*$:filters_path=$NEUTRON_CONF_DIR/rootwrap.d:" -i $NEUTRON_CONF_DIR/rootwrap.conf |
| 327 | |
| 328 | # Set up the rootwrap sudoers for Neutron |
| 329 | tempfile=`mktemp` |
Ihar Hrachyshka | e65ab4a | 2017-02-24 17:47:55 +0000 | [diff] [blame] | 330 | echo "$STACK_USER ALL=(root) NOPASSWD: $NEUTRON_ROOTWRAP_CMD *" >$tempfile |
| 331 | echo "$STACK_USER ALL=(root) NOPASSWD: $NEUTRON_ROOTWRAP_DAEMON_CMD" >>$tempfile |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 332 | chmod 0440 $tempfile |
| 333 | sudo chown root:root $tempfile |
| 334 | sudo mv $tempfile /etc/sudoers.d/neutron-rootwrap |
| 335 | } |
| 336 | |
| 337 | # Make Neutron-required changes to nova.conf |
Lucas Alvares Gomes | e638593 | 2018-06-28 11:00:28 +0100 | [diff] [blame] | 338 | # Takes a single optional argument which is the config file to update, |
| 339 | # if not passed $NOVA_CONF is used. |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 340 | function configure_neutron_nova_new { |
Lucas Alvares Gomes | e638593 | 2018-06-28 11:00:28 +0100 | [diff] [blame] | 341 | local conf=${1:-$NOVA_CONF} |
Matt Riedemann | e95f2a3 | 2018-06-18 16:17:29 -0400 | [diff] [blame] | 342 | iniset $conf DEFAULT use_neutron True |
| 343 | iniset $conf neutron auth_type "password" |
| 344 | iniset $conf neutron auth_url "$KEYSTONE_SERVICE_URI" |
| 345 | iniset $conf neutron username neutron |
| 346 | iniset $conf neutron password "$SERVICE_PASSWORD" |
| 347 | iniset $conf neutron user_domain_name "Default" |
| 348 | iniset $conf neutron project_name "$SERVICE_TENANT_NAME" |
| 349 | iniset $conf neutron project_domain_name "Default" |
| 350 | iniset $conf neutron auth_strategy $NEUTRON_AUTH_STRATEGY |
| 351 | iniset $conf neutron region_name "$REGION_NAME" |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 352 | |
Matt Riedemann | e95f2a3 | 2018-06-18 16:17:29 -0400 | [diff] [blame] | 353 | iniset $conf DEFAULT firewall_driver nova.virt.firewall.NoopFirewallDriver |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 354 | |
Gary Kotton | 88f8558 | 2016-08-14 06:55:42 -0700 | [diff] [blame] | 355 | # optionally set options in nova_conf |
Matt Riedemann | e95f2a3 | 2018-06-18 16:17:29 -0400 | [diff] [blame] | 356 | neutron_plugin_create_nova_conf $conf |
Gary Kotton | 88f8558 | 2016-08-14 06:55:42 -0700 | [diff] [blame] | 357 | |
Sean M. Collins | 1cd2828 | 2016-05-11 15:07:19 -0400 | [diff] [blame] | 358 | if is_service_enabled neutron-metadata-agent; then |
Matt Riedemann | e95f2a3 | 2018-06-18 16:17:29 -0400 | [diff] [blame] | 359 | iniset $conf neutron service_metadata_proxy "True" |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 360 | fi |
| 361 | |
| 362 | } |
| 363 | |
| 364 | # Tenant User Roles |
| 365 | # ------------------------------------------------------------------ |
| 366 | # service neutron admin # if enabled |
| 367 | |
| 368 | # create_neutron_accounts() - Create required service accounts |
| 369 | function create_neutron_accounts_new { |
Kevin Benton | 66b361b | 2017-06-13 00:31:01 -0700 | [diff] [blame] | 370 | local neutron_url |
| 371 | |
| 372 | if [ "$NEUTRON_DEPLOY_MOD_WSGI" == "True" ]; then |
| 373 | neutron_url=$NEUTRON_SERVICE_PROTOCOL://$NEUTRON_SERVICE_HOST/networking/ |
| 374 | else |
| 375 | neutron_url=$NEUTRON_SERVICE_PROTOCOL://$NEUTRON_SERVICE_HOST:$NEUTRON_SERVICE_PORT/ |
| 376 | fi |
| 377 | |
| 378 | |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 379 | if [[ "$ENABLED_SERVICES" =~ "neutron-api" ]]; then |
| 380 | |
| 381 | create_service_user "neutron" |
| 382 | |
| 383 | neutron_service=$(get_or_create_service "neutron" \ |
| 384 | "network" "Neutron Service") |
| 385 | get_or_create_endpoint $neutron_service \ |
Kevin Benton | 66b361b | 2017-06-13 00:31:01 -0700 | [diff] [blame] | 386 | "$REGION_NAME" "$neutron_url" |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 387 | fi |
| 388 | } |
| 389 | |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 390 | # init_neutron() - Initialize databases, etc. |
| 391 | function init_neutron_new { |
| 392 | |
| 393 | recreate_database neutron |
| 394 | |
Clark Boylan | 633dbc3 | 2017-06-14 12:09:21 -0700 | [diff] [blame] | 395 | time_start "dbsync" |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 396 | # Run Neutron db migrations |
Ihar Hrachyshka | 19f4b3f | 2017-02-23 20:44:18 +0000 | [diff] [blame] | 397 | $NEUTRON_BIN_DIR/neutron-db-manage upgrade heads |
Clark Boylan | 633dbc3 | 2017-06-14 12:09:21 -0700 | [diff] [blame] | 398 | time_stop "dbsync" |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 399 | } |
| 400 | |
| 401 | # install_neutron() - Collect source and prepare |
| 402 | function install_neutron_new { |
| 403 | git_clone $NEUTRON_REPO $NEUTRON_DIR $NEUTRON_BRANCH |
| 404 | setup_develop $NEUTRON_DIR |
| 405 | |
| 406 | # Install neutron-lib from git so we make sure we're testing |
| 407 | # the latest code. |
| 408 | if use_library_from_git "neutron-lib"; then |
| 409 | git_clone_by_name "neutron-lib" |
| 410 | setup_dev_lib "neutron-lib" |
| 411 | fi |
| 412 | |
| 413 | # L3 service requires radvd |
| 414 | if is_service_enabled neutron-l3; then |
| 415 | install_package radvd |
| 416 | fi |
| 417 | |
| 418 | if is_service_enabled neutron-agent neutron-dhcp neutron-l3; then |
| 419 | #TODO(sc68cal) - kind of ugly |
| 420 | source $TOP_DIR/lib/neutron_plugins/${NEUTRON_AGENT}_agent |
| 421 | neutron_plugin_install_agent_packages |
| 422 | fi |
| 423 | |
| 424 | } |
| 425 | |
| 426 | # install_neutronclient() - Collect source and prepare |
| 427 | function install_neutronclient { |
| 428 | if use_library_from_git "python-neutronclient"; then |
| 429 | git_clone_by_name "python-neutronclient" |
| 430 | setup_dev_lib "python-neutronclient" |
| 431 | sudo install -D -m 0644 -o $STACK_USER {${GITDIR["python-neutronclient"]}/tools/,/etc/bash_completion.d/}neutron.bash_completion |
| 432 | fi |
| 433 | } |
| 434 | |
| 435 | # start_neutron_api() - Start the API process ahead of other things |
| 436 | function start_neutron_api { |
| 437 | local service_port=$NEUTRON_SERVICE_PORT |
| 438 | local service_protocol=$NEUTRON_SERVICE_PROTOCOL |
Kevin Benton | 66b361b | 2017-06-13 00:31:01 -0700 | [diff] [blame] | 439 | local neutron_url |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 440 | if is_service_enabled tls-proxy; then |
| 441 | service_port=$NEUTRON_SERVICE_PORT_INT |
| 442 | service_protocol="http" |
| 443 | fi |
| 444 | |
YAMAMOTO Takashi | ed887d8 | 2017-02-22 14:21:33 -0500 | [diff] [blame] | 445 | local opts="" |
| 446 | opts+=" --config-file $NEUTRON_CONF" |
| 447 | opts+=" --config-file $NEUTRON_CORE_PLUGIN_CONF" |
YAMAMOTO Takashi | eede9dd | 2016-07-15 10:27:53 +0900 | [diff] [blame] | 448 | local cfg_file |
| 449 | for cfg_file in ${_NEUTRON_SERVER_EXTRA_CONF_FILES_ABS[@]}; do |
| 450 | opts+=" --config-file $cfg_file" |
| 451 | done |
| 452 | |
Kevin Benton | 66b361b | 2017-06-13 00:31:01 -0700 | [diff] [blame] | 453 | if [ "$NEUTRON_DEPLOY_MOD_WSGI" == "True" ]; then |
| 454 | run_process neutron-api "$NEUTRON_BIN_DIR/uwsgi --procname-prefix neutron-api --ini $NEUTRON_UWSGI_CONF" |
| 455 | neutron_url=$service_protocol://$NEUTRON_SERVICE_HOST/networking/ |
| 456 | enable_service neutron-rpc-server |
| 457 | run_process neutron-rpc-server "$NEUTRON_BIN_DIR/neutron-rpc-server $opts" |
| 458 | else |
| 459 | # Start the Neutron service |
| 460 | # TODO(sc68cal) Stop hard coding this |
| 461 | run_process neutron-api "$NEUTRON_BIN_DIR/neutron-server $opts" |
| 462 | neutron_url=$service_protocol://$NEUTRON_SERVICE_HOST:$service_port |
| 463 | # Start proxy if enabled |
| 464 | if is_service_enabled tls-proxy; then |
| 465 | start_tls_proxy neutron '*' $NEUTRON_SERVICE_PORT $NEUTRON_SERVICE_HOST $NEUTRON_SERVICE_PORT_INT |
| 466 | fi |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 467 | fi |
| 468 | |
Kevin Benton | 66b361b | 2017-06-13 00:31:01 -0700 | [diff] [blame] | 469 | if ! wait_for_service $SERVICE_TIMEOUT $neutron_url; then |
| 470 | die $LINENO "neutron-api did not start" |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 471 | fi |
| 472 | } |
| 473 | |
Sean Dague | 0eebeb4 | 2017-08-30 14:16:58 -0400 | [diff] [blame] | 474 | # start_neutron() - Start running processes |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 475 | function start_neutron_new { |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 476 | # Start up the neutron agents if enabled |
| 477 | # TODO(sc68cal) Make this pluggable so different DevStack plugins for different Neutron plugins |
| 478 | # can resolve the $NEUTRON_AGENT_BINARY |
| 479 | if is_service_enabled neutron-agent; then |
Ihar Hrachyshka | 19f4b3f | 2017-02-23 20:44:18 +0000 | [diff] [blame] | 480 | # TODO(ihrachys) stop loading ml2_conf.ini into agents, instead load agent specific files |
| 481 | run_process neutron-agent "$NEUTRON_BIN_DIR/$NEUTRON_AGENT_BINARY --config-file $NEUTRON_CONF --config-file $NEUTRON_CORE_PLUGIN_CONF" |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 482 | fi |
| 483 | if is_service_enabled neutron-dhcp; then |
| 484 | neutron_plugin_configure_dhcp_agent $NEUTRON_DHCP_CONF |
Ihar Hrachyshka | 19f4b3f | 2017-02-23 20:44:18 +0000 | [diff] [blame] | 485 | run_process neutron-dhcp "$NEUTRON_BIN_DIR/$NEUTRON_DHCP_BINARY --config-file $NEUTRON_CONF --config-file $NEUTRON_DHCP_CONF" |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 486 | fi |
| 487 | if is_service_enabled neutron-l3; then |
Ihar Hrachyshka | 19f4b3f | 2017-02-23 20:44:18 +0000 | [diff] [blame] | 488 | run_process neutron-l3 "$NEUTRON_BIN_DIR/$NEUTRON_L3_BINARY --config-file $NEUTRON_CONF --config-file $NEUTRON_L3_CONF" |
YAMAMOTO Takashi | c07170a | 2016-07-20 19:44:05 +0900 | [diff] [blame] | 489 | fi |
Josh | 8f72162 | 2018-02-01 09:45:47 +0200 | [diff] [blame] | 490 | if is_service_enabled neutron-api && [[ "$NEUTRON_CREATE_INITIAL_NETWORKS" == "True" ]]; then |
YAMAMOTO Takashi | 07edde1 | 2016-10-19 19:21:00 +0000 | [diff] [blame] | 491 | # XXX(sc68cal) - Here's where plugins can wire up their own networks instead |
| 492 | # of the code in lib/neutron_plugins/services/l3 |
| 493 | if type -p neutron_plugin_create_initial_networks > /dev/null; then |
| 494 | neutron_plugin_create_initial_networks |
| 495 | else |
| 496 | # XXX(sc68cal) Load up the built in Neutron networking code and build a topology |
| 497 | source $TOP_DIR/lib/neutron_plugins/services/l3 |
| 498 | # Create the networks using servic |
| 499 | create_neutron_initial_network |
| 500 | fi |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 501 | fi |
Sean M. Collins | 1cd2828 | 2016-05-11 15:07:19 -0400 | [diff] [blame] | 502 | if is_service_enabled neutron-metadata-agent; then |
Ihar Hrachyshka | 19f4b3f | 2017-02-23 20:44:18 +0000 | [diff] [blame] | 503 | run_process neutron-metadata-agent "$NEUTRON_BIN_DIR/$NEUTRON_META_BINARY --config-file $NEUTRON_CONF --config-file $NEUTRON_META_CONF" |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 504 | fi |
Sean M. Collins | 8063fee | 2016-05-24 11:27:36 -0700 | [diff] [blame] | 505 | |
| 506 | if is_service_enabled neutron-metering; then |
Ihar Hrachyshka | 868746b | 2017-09-13 15:44:18 -0600 | [diff] [blame] | 507 | run_process neutron-metering "$NEUTRON_BIN_DIR/$NEUTRON_METERING_BINARY --config-file $NEUTRON_CONF --config-file $NEUTRON_METERING_AGENT_CONF" |
Sean M. Collins | 8063fee | 2016-05-24 11:27:36 -0700 | [diff] [blame] | 508 | fi |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 509 | } |
| 510 | |
Sean Dague | 0eebeb4 | 2017-08-30 14:16:58 -0400 | [diff] [blame] | 511 | # stop_neutron() - Stop running processes |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 512 | function stop_neutron_new { |
| 513 | for serv in neutron-api neutron-agent neutron-l3; do |
| 514 | stop_process $serv |
| 515 | done |
| 516 | |
Kevin Benton | 66b361b | 2017-06-13 00:31:01 -0700 | [diff] [blame] | 517 | if is_service_enabled neutron-rpc-server; then |
| 518 | stop_process neutron-rpc-server |
| 519 | fi |
| 520 | |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 521 | if is_service_enabled neutron-dhcp; then |
| 522 | stop_process neutron-dhcp |
| 523 | pid=$(ps aux | awk '/[d]nsmasq.+interface=(tap|ns-)/ { print $2 }') |
| 524 | [ ! -z "$pid" ] && sudo kill -9 $pid |
| 525 | fi |
| 526 | |
Sean M. Collins | 1cd2828 | 2016-05-11 15:07:19 -0400 | [diff] [blame] | 527 | if is_service_enabled neutron-metadata-agent; then |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 528 | sudo pkill -9 -f neutron-ns-metadata-proxy || : |
Sean M. Collins | 1cd2828 | 2016-05-11 15:07:19 -0400 | [diff] [blame] | 529 | stop_process neutron-metadata-agent |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 530 | fi |
| 531 | } |
| 532 | |
YAMAMOTO Takashi | d9ec420 | 2016-07-21 16:14:52 +0900 | [diff] [blame] | 533 | # neutron_service_plugin_class_add() - add service plugin class |
| 534 | function neutron_service_plugin_class_add_new { |
| 535 | local service_plugin_class=$1 |
| 536 | local plugins="" |
| 537 | |
| 538 | plugins=$(iniget $NEUTRON_CONF DEFAULT service_plugins) |
YAMAMOTO Takashi | 84e45c9 | 2017-02-22 14:25:14 -0500 | [diff] [blame] | 539 | if [ $plugins ]; then |
| 540 | plugins+="," |
| 541 | fi |
| 542 | plugins+="${service_plugin_class}" |
YAMAMOTO Takashi | d9ec420 | 2016-07-21 16:14:52 +0900 | [diff] [blame] | 543 | iniset $NEUTRON_CONF DEFAULT service_plugins $plugins |
| 544 | } |
| 545 | |
Ihar Hrachyshka | f511c36 | 2017-03-07 06:31:49 +0000 | [diff] [blame] | 546 | function _neutron_ml2_extension_driver_add { |
| 547 | local driver=$1 |
| 548 | local drivers="" |
| 549 | |
| 550 | drivers=$(iniget $NEUTRON_CORE_PLUGIN_CONF ml2 extension_drivers) |
| 551 | if [ $drivers ]; then |
| 552 | drivers+="," |
| 553 | fi |
| 554 | drivers+="${driver}" |
| 555 | iniset $NEUTRON_CORE_PLUGIN_CONF ml2 extension_drivers $drivers |
| 556 | } |
| 557 | |
YAMAMOTO Takashi | eede9dd | 2016-07-15 10:27:53 +0900 | [diff] [blame] | 558 | function neutron_server_config_add_new { |
| 559 | _NEUTRON_SERVER_EXTRA_CONF_FILES_ABS+=($1) |
| 560 | } |
| 561 | |
YAMAMOTO Takashi | c043b6f | 2017-02-23 22:30:08 -0500 | [diff] [blame] | 562 | # neutron_deploy_rootwrap_filters() - deploy rootwrap filters |
| 563 | function neutron_deploy_rootwrap_filters_new { |
| 564 | local srcdir=$1 |
| 565 | sudo install -d -o root -g root -m 755 $NEUTRON_CONF_DIR/rootwrap.d |
| 566 | sudo install -o root -g root -m 644 $srcdir/etc/neutron/rootwrap.d/*.filters $NEUTRON_CONF_DIR/rootwrap.d |
| 567 | } |
| 568 | |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 569 | # Dispatch functions |
| 570 | # These are needed for compatibility between the old and new implementations |
| 571 | # where there are function name overlaps. These will be removed when |
| 572 | # neutron-legacy is removed. |
| 573 | # TODO(sc68cal) Remove when neutron-legacy is no more. |
| 574 | function cleanup_neutron { |
Kevin Benton | 66b361b | 2017-06-13 00:31:01 -0700 | [diff] [blame] | 575 | if [ "$NEUTRON_DEPLOY_MOD_WSGI" == "True" ]; then |
| 576 | stop_process neutron-api |
| 577 | stop_process neutron-rpc-server |
| 578 | remove_uwsgi_config "$NEUTRON_UWSGI_CONF" "$NEUTRON_BIN_DIR/neutron-api" |
| 579 | sudo rm -f $(apache_site_config_for neutron-api) |
| 580 | fi |
| 581 | |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 582 | if is_neutron_legacy_enabled; then |
| 583 | # Call back to old function |
| 584 | cleanup_mutnauq "$@" |
| 585 | else |
| 586 | cleanup_neutron_new "$@" |
| 587 | fi |
| 588 | } |
| 589 | |
| 590 | function configure_neutron { |
| 591 | if is_neutron_legacy_enabled; then |
| 592 | # Call back to old function |
| 593 | configure_mutnauq "$@" |
| 594 | else |
| 595 | configure_neutron_new "$@" |
| 596 | fi |
Kevin Benton | 66b361b | 2017-06-13 00:31:01 -0700 | [diff] [blame] | 597 | |
| 598 | if [ "$NEUTRON_DEPLOY_MOD_WSGI" == "True" ]; then |
| 599 | write_uwsgi_config "$NEUTRON_UWSGI_CONF" "$NEUTRON_BIN_DIR/neutron-api" "/networking" |
| 600 | fi |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 601 | } |
| 602 | |
| 603 | function configure_neutron_nova { |
| 604 | if is_neutron_legacy_enabled; then |
| 605 | # Call back to old function |
Matt Riedemann | e95f2a3 | 2018-06-18 16:17:29 -0400 | [diff] [blame] | 606 | create_nova_conf_neutron $NOVA_CONF |
| 607 | if [[ "${CELLSV2_SETUP}" == "superconductor" ]]; then |
| 608 | for i in $(seq 1 $NOVA_NUM_CELLS); do |
| 609 | local conf |
| 610 | conf=$(conductor_conf $i) |
| 611 | create_nova_conf_neutron $conf |
| 612 | done |
| 613 | fi |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 614 | else |
Matt Riedemann | e95f2a3 | 2018-06-18 16:17:29 -0400 | [diff] [blame] | 615 | configure_neutron_nova_new $NOVA_CONF |
| 616 | if [[ "${CELLSV2_SETUP}" == "superconductor" ]]; then |
| 617 | for i in $(seq 1 $NOVA_NUM_CELLS); do |
| 618 | local conf |
| 619 | conf=$(conductor_conf $i) |
| 620 | configure_neutron_nova_new $conf |
| 621 | done |
| 622 | fi |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 623 | fi |
| 624 | } |
| 625 | |
| 626 | function create_neutron_accounts { |
| 627 | if is_neutron_legacy_enabled; then |
| 628 | # Call back to old function |
| 629 | create_mutnauq_accounts "$@" |
| 630 | else |
| 631 | create_neutron_accounts_new "$@" |
| 632 | fi |
| 633 | } |
| 634 | |
| 635 | function init_neutron { |
| 636 | if is_neutron_legacy_enabled; then |
| 637 | # Call back to old function |
| 638 | init_mutnauq "$@" |
| 639 | else |
| 640 | init_neutron_new "$@" |
| 641 | fi |
| 642 | } |
| 643 | |
| 644 | function install_neutron { |
| 645 | if is_neutron_legacy_enabled; then |
| 646 | # Call back to old function |
| 647 | install_mutnauq "$@" |
| 648 | else |
| 649 | install_neutron_new "$@" |
| 650 | fi |
| 651 | } |
| 652 | |
YAMAMOTO Takashi | d9ec420 | 2016-07-21 16:14:52 +0900 | [diff] [blame] | 653 | function neutron_service_plugin_class_add { |
| 654 | if is_neutron_legacy_enabled; then |
| 655 | # Call back to old function |
| 656 | _neutron_service_plugin_class_add "$@" |
| 657 | else |
| 658 | neutron_service_plugin_class_add_new "$@" |
| 659 | fi |
| 660 | } |
| 661 | |
Ihar Hrachyshka | f511c36 | 2017-03-07 06:31:49 +0000 | [diff] [blame] | 662 | function neutron_ml2_extension_driver_add { |
| 663 | if is_neutron_legacy_enabled; then |
| 664 | # Call back to old function |
| 665 | _neutron_ml2_extension_driver_add_old "$@" |
| 666 | else |
| 667 | _neutron_ml2_extension_driver_add "$@" |
| 668 | fi |
| 669 | } |
| 670 | |
YAMAMOTO Takashi | c74315e | 2016-07-21 17:49:43 +0900 | [diff] [blame] | 671 | function install_neutron_agent_packages { |
| 672 | if is_neutron_legacy_enabled; then |
| 673 | # Call back to old function |
| 674 | install_neutron_agent_packages_mutnauq "$@" |
| 675 | else |
| 676 | : |
| 677 | fi |
| 678 | } |
| 679 | |
YAMAMOTO Takashi | eede9dd | 2016-07-15 10:27:53 +0900 | [diff] [blame] | 680 | function neutron_server_config_add { |
| 681 | if is_neutron_legacy_enabled; then |
| 682 | # Call back to old function |
| 683 | mutnauq_server_config_add "$@" |
| 684 | else |
| 685 | neutron_server_config_add_new "$@" |
| 686 | fi |
| 687 | } |
| 688 | |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 689 | function start_neutron { |
| 690 | if is_neutron_legacy_enabled; then |
| 691 | # Call back to old function |
| 692 | start_mutnauq_l2_agent "$@" |
| 693 | start_mutnauq_other_agents "$@" |
| 694 | else |
| 695 | start_neutron_new "$@" |
| 696 | fi |
| 697 | } |
| 698 | |
| 699 | function stop_neutron { |
| 700 | if is_neutron_legacy_enabled; then |
| 701 | # Call back to old function |
| 702 | stop_mutnauq "$@" |
| 703 | else |
| 704 | stop_neutron_new "$@" |
| 705 | fi |
| 706 | } |
| 707 | |
YAMAMOTO Takashi | c043b6f | 2017-02-23 22:30:08 -0500 | [diff] [blame] | 708 | function neutron_deploy_rootwrap_filters { |
| 709 | if is_neutron_legacy_enabled; then |
| 710 | # Call back to old function |
| 711 | _neutron_deploy_rootwrap_filters "$@" |
| 712 | else |
| 713 | neutron_deploy_rootwrap_filters_new "$@" |
| 714 | fi |
| 715 | } |
| 716 | |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 717 | # Restore xtrace |
| 718 | $XTRACE |