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