Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 1 | #!/bin/bash |
| 2 | # |
| 3 | # Licensed under the Apache License, Version 2.0 (the "License"); you may |
| 4 | # not use this file except in compliance with the License. You may obtain |
| 5 | # a copy of the License at |
| 6 | # |
| 7 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | # |
| 9 | # Unless required by applicable law or agreed to in writing, software |
| 10 | # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
| 11 | # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the |
| 12 | # License for the specific language governing permissions and limitations |
| 13 | # under the License. |
| 14 | # |
| 15 | |
| 16 | # Global Sources |
| 17 | # -------------- |
| 18 | |
| 19 | # There are some ovs functions OVN depends on that must be sourced from |
| 20 | # the ovs neutron plugins. |
| 21 | source ${TOP_DIR}/lib/neutron_plugins/ovs_base |
| 22 | source ${TOP_DIR}/lib/neutron_plugins/openvswitch_agent |
| 23 | |
Ian Wienand | 7783563 | 2021-05-13 13:14:42 +1000 | [diff] [blame] | 24 | # Load devstack ovs compliation and loading functions |
| 25 | source ${TOP_DIR}/lib/neutron_plugins/ovs_source |
| 26 | |
Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 27 | # Set variables for building OVN from source |
| 28 | OVN_REPO=${OVN_REPO:-https://github.com/ovn-org/ovn.git} |
| 29 | OVN_REPO_NAME=$(basename ${OVN_REPO} | cut -f1 -d'.') |
| 30 | OVN_REPO_NAME=${OVN_REPO_NAME:-ovn} |
yatinkarel | bf04bf5 | 2024-12-27 13:01:16 +0530 | [diff] [blame] | 31 | OVN_BRANCH=${OVN_BRANCH:-branch-24.03} |
Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 32 | # The commit removing OVN bits from the OVS tree, it is the commit that is not |
| 33 | # present in OVN tree and is used to distinguish if OVN is part of OVS or not. |
| 34 | # https://github.com/openvswitch/ovs/commit/05bf1dbb98b0635a51f75e268ef8aed27601401d |
| 35 | OVN_SPLIT_HASH=05bf1dbb98b0635a51f75e268ef8aed27601401d |
| 36 | |
| 37 | if is_service_enabled tls-proxy; then |
| 38 | OVN_PROTO=ssl |
| 39 | else |
| 40 | OVN_PROTO=tcp |
| 41 | fi |
| 42 | |
| 43 | # How to connect to ovsdb-server hosting the OVN SB database. |
| 44 | OVN_SB_REMOTE=${OVN_SB_REMOTE:-$OVN_PROTO:$SERVICE_HOST:6642} |
| 45 | |
| 46 | # How to connect to ovsdb-server hosting the OVN NB database |
| 47 | OVN_NB_REMOTE=${OVN_NB_REMOTE:-$OVN_PROTO:$SERVICE_HOST:6641} |
| 48 | |
| 49 | # ml2/config for neutron_sync_mode |
| 50 | OVN_NEUTRON_SYNC_MODE=${OVN_NEUTRON_SYNC_MODE:-log} |
| 51 | |
| 52 | # Configured DNS servers to be used with internal_dns extension, only |
| 53 | # if the subnet DNS is not configured. |
| 54 | OVN_DNS_SERVERS=${OVN_DNS_SERVERS:-8.8.8.8} |
| 55 | |
| 56 | # The type of OVN L3 Scheduler to use. The OVN L3 Scheduler determines the |
| 57 | # hypervisor/chassis where a routers gateway should be hosted in OVN. The |
| 58 | # default OVN L3 scheduler is leastloaded |
| 59 | OVN_L3_SCHEDULER=${OVN_L3_SCHEDULER:-leastloaded} |
| 60 | |
| 61 | # A UUID to uniquely identify this system. If one is not specified, a random |
| 62 | # one will be generated. A randomly generated UUID will be saved in a file |
Slawek Kaplonski | 1ed276c | 2021-03-11 13:10:28 +0100 | [diff] [blame] | 63 | # $OVS_SYSCONFDIR/system-id.conf (typically /etc/openvswitch/system-id.conf) |
| 64 | # so that the same one will be re-used if you re-run DevStack or restart |
| 65 | # Open vSwitch service. |
Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 66 | OVN_UUID=${OVN_UUID:-} |
| 67 | |
| 68 | # Whether or not to build the openvswitch kernel module from ovs. This is required |
| 69 | # unless the distro kernel includes ovs+conntrack support. |
| 70 | OVN_BUILD_MODULES=$(trueorfalse False OVN_BUILD_MODULES) |
Lucas Alvares Gomes | e651d9e | 2020-11-19 14:50:01 +0000 | [diff] [blame] | 71 | OVN_BUILD_FROM_SOURCE=$(trueorfalse False OVN_BUILD_FROM_SOURCE) |
Slawek Kaplonski | 4185358 | 2021-07-06 12:05:31 +0200 | [diff] [blame] | 72 | if [[ "$OVN_BUILD_FROM_SOURCE" == "True" ]]; then |
| 73 | Q_BUILD_OVS_FROM_GIT=True |
| 74 | fi |
Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 75 | |
| 76 | # Whether or not to install the ovs python module from ovs source. This can be |
| 77 | # used to test and validate new ovs python features. This should only be used |
| 78 | # for development purposes since the ovs python version is controlled by OpenStack |
| 79 | # requirements. |
| 80 | OVN_INSTALL_OVS_PYTHON_MODULE=$(trueorfalse False OVN_INSTALL_OVS_PYTHON_MODULE) |
| 81 | |
| 82 | # GENEVE overlay protocol overhead. Defaults to 38 bytes plus the IP version |
| 83 | # overhead (20 bytes for IPv4 (default) or 40 bytes for IPv6) which is determined |
| 84 | # based on the ML2 overlay_ip_version option. The ML2 framework will use this to |
| 85 | # configure the MTU DHCP option. |
| 86 | OVN_GENEVE_OVERHEAD=${OVN_GENEVE_OVERHEAD:-38} |
| 87 | |
Lucas Alvares Gomes | e38a39a | 2021-05-14 09:14:24 +0100 | [diff] [blame] | 88 | # The log level of the OVN databases (north and south). |
| 89 | # Supported log levels are: off, emer, err, warn, info or dbg. |
| 90 | # More information about log levels can be found at |
| 91 | # http://www.openvswitch.org/support/dist-docs/ovs-appctl.8.txt |
Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 92 | OVN_DBS_LOG_LEVEL=${OVN_DBS_LOG_LEVEL:-info} |
| 93 | |
Rodolfo Alonso Hernandez | 6091df2 | 2023-12-20 23:06:18 +0000 | [diff] [blame] | 94 | # OVN metadata agent configuration |
Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 95 | OVN_META_CONF=$NEUTRON_CONF_DIR/neutron_ovn_metadata_agent.ini |
| 96 | OVN_META_DATA_HOST=${OVN_META_DATA_HOST:-$(ipv6_unquote $SERVICE_HOST)} |
| 97 | |
Rodolfo Alonso Hernandez | 6091df2 | 2023-12-20 23:06:18 +0000 | [diff] [blame] | 98 | # OVN agent configuration |
| 99 | OVN_AGENT_CONF=$NEUTRON_CONF_DIR/plugins/ml2/ovn_agent.ini |
| 100 | OVN_AGENT_EXTENSIONS=${OVN_AGENT_EXTENSIONS:-} |
| 101 | |
Lucas Alvares Gomes | e38a39a | 2021-05-14 09:14:24 +0100 | [diff] [blame] | 102 | # If True (default) the node will be considered a gateway node. |
| 103 | ENABLE_CHASSIS_AS_GW=$(trueorfalse True ENABLE_CHASSIS_AS_GW) |
Lucas Alvares Gomes | 22038a9 | 2021-05-27 13:44:20 +0100 | [diff] [blame] | 104 | OVN_L3_CREATE_PUBLIC_NETWORK=$(trueorfalse True OVN_L3_CREATE_PUBLIC_NETWORK) |
Lucas Alvares Gomes | e38a39a | 2021-05-14 09:14:24 +0100 | [diff] [blame] | 105 | |
Lucas Alvares Gomes | 6ecfe67 | 2020-09-23 11:54:19 +0100 | [diff] [blame] | 106 | export OVSDB_SERVER_LOCAL_HOST=$SERVICE_LOCAL_HOST |
Brian Haley | c869d59 | 2020-02-28 14:55:08 -0500 | [diff] [blame] | 107 | TUNNEL_IP=$TUNNEL_ENDPOINT_IP |
Lucas Alvares Gomes | 6ecfe67 | 2020-09-23 11:54:19 +0100 | [diff] [blame] | 108 | if [[ "$SERVICE_IP_VERSION" == 6 ]]; then |
| 109 | OVSDB_SERVER_LOCAL_HOST=[$OVSDB_SERVER_LOCAL_HOST] |
Brian Haley | c869d59 | 2020-02-28 14:55:08 -0500 | [diff] [blame] | 110 | TUNNEL_IP=[$TUNNEL_IP] |
Lucas Alvares Gomes | 6ecfe67 | 2020-09-23 11:54:19 +0100 | [diff] [blame] | 111 | fi |
Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 112 | |
| 113 | OVN_IGMP_SNOOPING_ENABLE=$(trueorfalse False OVN_IGMP_SNOOPING_ENABLE) |
| 114 | |
Lucas Alvares Gomes | e651d9e | 2020-11-19 14:50:01 +0000 | [diff] [blame] | 115 | OVS_PREFIX= |
| 116 | if [[ "$OVN_BUILD_FROM_SOURCE" == "True" ]]; then |
| 117 | OVS_PREFIX=/usr/local |
| 118 | fi |
Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 119 | OVS_SBINDIR=$OVS_PREFIX/sbin |
| 120 | OVS_BINDIR=$OVS_PREFIX/bin |
| 121 | OVS_RUNDIR=$OVS_PREFIX/var/run/openvswitch |
| 122 | OVS_SHAREDIR=$OVS_PREFIX/share/openvswitch |
| 123 | OVS_SCRIPTDIR=$OVS_SHAREDIR/scripts |
| 124 | OVS_DATADIR=$DATA_DIR/ovs |
Rodolfo Alonso Hernandez | 30819e6 | 2021-03-22 07:14:50 +0000 | [diff] [blame] | 125 | OVS_SYSCONFDIR=${OVS_SYSCONFDIR:-$OVS_PREFIX/etc/openvswitch} |
Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 126 | |
Gregory Thiemonge | 6822ff3 | 2021-09-01 09:36:31 +0200 | [diff] [blame] | 127 | if [[ "$OVN_BUILD_FROM_SOURCE" == "True" ]]; then |
| 128 | OVN_DATADIR=$DATA_DIR/ovn |
| 129 | else |
| 130 | # When using OVN from packages, the data dir for OVN DBs is |
| 131 | # /var/lib/ovn |
| 132 | OVN_DATADIR=/var/lib/ovn |
| 133 | fi |
Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 134 | OVN_SHAREDIR=$OVS_PREFIX/share/ovn |
| 135 | OVN_SCRIPTDIR=$OVN_SHAREDIR/scripts |
| 136 | OVN_RUNDIR=$OVS_PREFIX/var/run/ovn |
| 137 | |
| 138 | NEUTRON_OVN_BIN_DIR=$(get_python_exec_prefix) |
| 139 | NEUTRON_OVN_METADATA_BINARY="neutron-ovn-metadata-agent" |
Rodolfo Alonso Hernandez | 6091df2 | 2023-12-20 23:06:18 +0000 | [diff] [blame] | 140 | NEUTRON_OVN_AGENT_BINARY="neutron-ovn-agent" |
Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 141 | |
| 142 | STACK_GROUP="$( id --group --name "$STACK_USER" )" |
| 143 | |
Lucas Alvares Gomes | e651d9e | 2020-11-19 14:50:01 +0000 | [diff] [blame] | 144 | OVN_NORTHD_SERVICE=ovn-northd.service |
| 145 | if is_ubuntu; then |
| 146 | # The ovn-central.service file on Ubuntu is responsible for starting |
| 147 | # ovn-northd and the OVN DBs (on CentOS this is done by ovn-northd.service) |
| 148 | OVN_NORTHD_SERVICE=ovn-central.service |
| 149 | fi |
| 150 | OVSDB_SERVER_SERVICE=ovsdb-server.service |
| 151 | OVS_VSWITCHD_SERVICE=ovs-vswitchd.service |
| 152 | OVN_CONTROLLER_SERVICE=ovn-controller.service |
| 153 | OVN_CONTROLLER_VTEP_SERVICE=ovn-controller-vtep.service |
| 154 | if [[ "$OVN_BUILD_FROM_SOURCE" == "True" ]]; then |
| 155 | OVSDB_SERVER_SERVICE=devstack@ovsdb-server.service |
| 156 | OVS_VSWITCHD_SERVICE=devstack@ovs-vswitchd.service |
| 157 | OVN_NORTHD_SERVICE=devstack@ovn-northd.service |
| 158 | OVN_CONTROLLER_SERVICE=devstack@ovn-controller.service |
| 159 | OVN_CONTROLLER_VTEP_SERVICE=devstack@ovn-controller-vtep.service |
| 160 | fi |
| 161 | |
Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 162 | # Defaults Overwrite |
| 163 | # ------------------ |
Rodolfo Alonso Hernandez | 754f1c6 | 2025-02-13 08:39:24 +0000 | [diff] [blame] | 164 | # NOTE(ralonsoh): during the eventlet removal, the "logger" mech |
| 165 | # driver has been removed from this list. Re-add it once the removal |
| 166 | # is finished or the mech driver does not call monkey_patch(). |
| 167 | Q_ML2_PLUGIN_MECHANISM_DRIVERS=${Q_ML2_PLUGIN_MECHANISM_DRIVERS:-ovn} |
Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 168 | Q_ML2_PLUGIN_TYPE_DRIVERS=${Q_ML2_PLUGIN_TYPE_DRIVERS:-local,flat,vlan,geneve} |
| 169 | Q_ML2_TENANT_NETWORK_TYPE=${Q_ML2_TENANT_NETWORK_TYPE:-"geneve"} |
| 170 | Q_ML2_PLUGIN_GENEVE_TYPE_OPTIONS=${Q_ML2_PLUGIN_GENEVE_TYPE_OPTIONS:-"vni_ranges=1:65536"} |
Lucas Alvares Gomes | e7625fc | 2020-08-26 09:46:35 +0100 | [diff] [blame] | 171 | Q_ML2_PLUGIN_EXT_DRIVERS=${Q_ML2_PLUGIN_EXT_DRIVERS:-port_security,qos} |
Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 172 | # this one allows empty: |
| 173 | ML2_L3_PLUGIN=${ML2_L3_PLUGIN-"ovn-router"} |
| 174 | |
Flavio Fernandes | a2273cc | 2021-02-06 16:23:36 -0500 | [diff] [blame] | 175 | Q_LOG_DRIVER_RATE_LIMIT=${Q_LOG_DRIVER_RATE_LIMIT:-100} |
| 176 | Q_LOG_DRIVER_BURST_LIMIT=${Q_LOG_DRIVER_BURST_LIMIT:-25} |
| 177 | Q_LOG_DRIVER_LOG_BASE=${Q_LOG_DRIVER_LOG_BASE:-acl_log_meter} |
Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 178 | |
| 179 | # Utility Functions |
| 180 | # ----------------- |
| 181 | |
yatinkarel | 1baa890 | 2022-05-06 17:53:54 +0530 | [diff] [blame] | 182 | function wait_for_db_file { |
| 183 | local count=0 |
| 184 | while [ ! -f $1 ]; do |
| 185 | sleep 1 |
| 186 | count=$((count+1)) |
Dr. Jens Harbott | bd6e520 | 2022-07-03 22:27:15 +0200 | [diff] [blame] | 187 | if [ "$count" -gt 40 ]; then |
yatinkarel | 1baa890 | 2022-05-06 17:53:54 +0530 | [diff] [blame] | 188 | die $LINENO "DB File $1 not found" |
| 189 | fi |
| 190 | done |
| 191 | } |
| 192 | |
Lucas Alvares Gomes | e651d9e | 2020-11-19 14:50:01 +0000 | [diff] [blame] | 193 | function wait_for_sock_file { |
| 194 | local count=0 |
| 195 | while [ ! -S $1 ]; do |
| 196 | sleep 1 |
| 197 | count=$((count+1)) |
Dr. Jens Harbott | bd6e520 | 2022-07-03 22:27:15 +0200 | [diff] [blame] | 198 | if [ "$count" -gt 40 ]; then |
Lucas Alvares Gomes | e651d9e | 2020-11-19 14:50:01 +0000 | [diff] [blame] | 199 | die $LINENO "Socket $1 not found" |
| 200 | fi |
| 201 | done |
| 202 | } |
| 203 | |
Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 204 | function use_new_ovn_repository { |
Lucas Alvares Gomes | e38a39a | 2021-05-14 09:14:24 +0100 | [diff] [blame] | 205 | if [[ "$OVN_BUILD_FROM_SOURCE" == "False" ]]; then |
| 206 | return 0 |
| 207 | fi |
Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 208 | if [ -z "$is_new_ovn" ]; then |
| 209 | local ovs_repo_dir=$DEST/$OVS_REPO_NAME |
| 210 | if [ ! -d $ovs_repo_dir ]; then |
Lucas Alvares Gomes | e651d9e | 2020-11-19 14:50:01 +0000 | [diff] [blame] | 211 | git_timed clone $OVS_REPO $ovs_repo_dir |
| 212 | pushd $ovs_repo_dir |
| 213 | git checkout $OVS_BRANCH |
| 214 | popd |
| 215 | else |
Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 216 | clone_repository $OVS_REPO $ovs_repo_dir $OVS_BRANCH |
| 217 | fi |
| 218 | # Check the split commit exists in the current branch |
| 219 | pushd $ovs_repo_dir |
| 220 | git log $OVS_BRANCH --pretty=format:"%H" | grep -q $OVN_SPLIT_HASH |
| 221 | is_new_ovn=$? |
| 222 | popd |
| 223 | fi |
| 224 | return $is_new_ovn |
| 225 | } |
| 226 | |
| 227 | # NOTE(rtheis): Function copied from DevStack _neutron_ovs_base_setup_bridge |
| 228 | # and _neutron_ovs_base_add_bridge with the call to neutron-ovs-cleanup |
| 229 | # removed. The call is not relevant for OVN, as it is specific to the use |
| 230 | # of Neutron's OVS agent and hangs when running stack.sh because |
| 231 | # neutron-ovs-cleanup uses the OVSDB native interface. |
| 232 | function ovn_base_setup_bridge { |
| 233 | local bridge=$1 |
Lucas Alvares Gomes | e651d9e | 2020-11-19 14:50:01 +0000 | [diff] [blame] | 234 | local addbr_cmd="sudo ovs-vsctl --no-wait -- --may-exist add-br $bridge -- set bridge $bridge protocols=OpenFlow13,OpenFlow15" |
Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 235 | |
| 236 | if [ "$OVS_DATAPATH_TYPE" != "system" ] ; then |
| 237 | addbr_cmd="$addbr_cmd -- set Bridge $bridge datapath_type=${OVS_DATAPATH_TYPE}" |
| 238 | fi |
| 239 | |
| 240 | $addbr_cmd |
Lucas Alvares Gomes | e651d9e | 2020-11-19 14:50:01 +0000 | [diff] [blame] | 241 | sudo ovs-vsctl --no-wait br-set-external-id $bridge bridge-id $bridge |
Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 242 | } |
| 243 | |
| 244 | function _start_process { |
| 245 | $SYSTEMCTL daemon-reload |
| 246 | $SYSTEMCTL enable $1 |
| 247 | $SYSTEMCTL restart $1 |
| 248 | } |
| 249 | |
| 250 | function _run_process { |
| 251 | local service=$1 |
| 252 | local cmd="$2" |
| 253 | local stop_cmd="$3" |
| 254 | local group=$4 |
Brian Haley | 71c9965 | 2022-10-19 14:08:43 -0400 | [diff] [blame] | 255 | local user=$5 |
| 256 | local rundir=${6:-$OVS_RUNDIR} |
Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 257 | |
| 258 | local systemd_service="devstack@$service.service" |
| 259 | local unit_file="$SYSTEMD_DIR/$systemd_service" |
Brian Haley | 71c9965 | 2022-10-19 14:08:43 -0400 | [diff] [blame] | 260 | local environment="OVN_RUNDIR=$OVN_RUNDIR OVN_DBDIR=$OVN_DATADIR OVN_LOGDIR=$LOGDIR OVS_RUNDIR=$OVS_RUNDIR OVS_DBDIR=$OVS_DATADIR OVS_LOGDIR=$LOGDIR" |
Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 261 | |
| 262 | echo "Starting $service executed command": $cmd |
| 263 | |
| 264 | write_user_unit_file $systemd_service "$cmd" "$group" "$user" |
| 265 | iniset -sudo $unit_file "Service" "Type" "forking" |
| 266 | iniset -sudo $unit_file "Service" "RemainAfterExit" "yes" |
| 267 | iniset -sudo $unit_file "Service" "KillMode" "mixed" |
| 268 | iniset -sudo $unit_file "Service" "LimitNOFILE" "65536" |
| 269 | iniset -sudo $unit_file "Service" "Environment" "$environment" |
| 270 | if [ -n "$stop_cmd" ]; then |
| 271 | iniset -sudo $unit_file "Service" "ExecStop" "$stop_cmd" |
| 272 | fi |
| 273 | |
| 274 | _start_process $systemd_service |
| 275 | |
Brian Haley | 71c9965 | 2022-10-19 14:08:43 -0400 | [diff] [blame] | 276 | local testcmd="test -e $rundir/$service.pid" |
Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 277 | test_with_retry "$testcmd" "$service did not start" $SERVICE_TIMEOUT 1 |
Rodolfo Alonso Hernandez | 8c67103 | 2022-02-09 18:01:46 +0000 | [diff] [blame] | 278 | local service_ctl_file |
Brian Haley | 71c9965 | 2022-10-19 14:08:43 -0400 | [diff] [blame] | 279 | service_ctl_file=$(ls $rundir | grep $service | grep ctl) |
Rodolfo Alonso Hernandez | 8c67103 | 2022-02-09 18:01:46 +0000 | [diff] [blame] | 280 | if [ -z "$service_ctl_file" ]; then |
| 281 | die $LINENO "ctl file for service $service is not present." |
| 282 | fi |
Brian Haley | 71c9965 | 2022-10-19 14:08:43 -0400 | [diff] [blame] | 283 | sudo ovs-appctl -t $rundir/$service_ctl_file vlog/set console:off syslog:info file:info |
Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 284 | } |
| 285 | |
| 286 | function clone_repository { |
| 287 | local repo=$1 |
| 288 | local dir=$2 |
| 289 | local branch=$3 |
| 290 | # Set ERROR_ON_CLONE to false to avoid the need of having the |
| 291 | # repositories like OVN and OVS in the required_projects of the job |
| 292 | # definition. |
| 293 | ERROR_ON_CLONE=false git_clone $repo $dir $branch |
| 294 | } |
| 295 | |
Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 296 | function create_public_bridge { |
| 297 | # Create the public bridge that OVN will use |
Radosław Piliszek | 9529878 | 2021-06-08 16:19:40 +0000 | [diff] [blame] | 298 | sudo ovs-vsctl --may-exist add-br $PUBLIC_BRIDGE -- set bridge $PUBLIC_BRIDGE protocols=OpenFlow13,OpenFlow15 |
Harald Jensås | 16ac21f | 2023-08-31 15:06:52 +0200 | [diff] [blame] | 299 | sudo ovs-vsctl set open . external-ids:ovn-bridge-mappings=${OVN_BRIDGE_MAPPINGS} |
Slawek Kaplonski | b1a89eb | 2021-08-26 21:42:32 +0200 | [diff] [blame] | 300 | _configure_public_network_connectivity |
Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 301 | } |
| 302 | |
Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 303 | |
| 304 | # OVN compilation functions |
| 305 | # ------------------------- |
| 306 | |
| 307 | |
| 308 | # compile_ovn() - Compile OVN from source and load needed modules |
| 309 | # Accepts three parameters: |
Slawek Kaplonski | 5888947 | 2021-12-22 16:00:29 +0100 | [diff] [blame] | 310 | # - first optional parameter defines prefix for |
Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 311 | # ovn compilation |
Slawek Kaplonski | 5888947 | 2021-12-22 16:00:29 +0100 | [diff] [blame] | 312 | # - second optional parameter defines localstatedir for |
Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 313 | # ovn single machine runtime |
| 314 | function compile_ovn { |
Slawek Kaplonski | 5888947 | 2021-12-22 16:00:29 +0100 | [diff] [blame] | 315 | local prefix=$1 |
| 316 | local localstatedir=$2 |
Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 317 | |
| 318 | if [ -n "$prefix" ]; then |
| 319 | prefix="--prefix=$prefix" |
| 320 | fi |
| 321 | |
| 322 | if [ -n "$localstatedir" ]; then |
| 323 | localstatedir="--localstatedir=$localstatedir" |
| 324 | fi |
| 325 | |
| 326 | clone_repository $OVN_REPO $DEST/$OVN_REPO_NAME $OVN_BRANCH |
| 327 | pushd $DEST/$OVN_REPO_NAME |
| 328 | |
| 329 | if [ ! -f configure ] ; then |
| 330 | ./boot.sh |
| 331 | fi |
| 332 | |
Mohammed Naser | 7fa2475 | 2022-04-20 15:42:43 -0400 | [diff] [blame] | 333 | # NOTE(mnaser): OVN requires that you build using the OVS from the |
| 334 | # submodule. |
| 335 | # |
| 336 | # https://github.com/ovn-org/ovn/blob/3fb397b63663297acbcbf794e1233951222ae5af/Documentation/intro/install/general.rst#bootstrapping |
| 337 | # https://github.com/ovn-org/ovn/issues/128 |
| 338 | git submodule update --init |
| 339 | pushd ovs |
| 340 | if [ ! -f configure ] ; then |
| 341 | ./boot.sh |
| 342 | fi |
Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 343 | if [ ! -f config.status ] || [ configure -nt config.status ] ; then |
Mohammed Naser | 7fa2475 | 2022-04-20 15:42:43 -0400 | [diff] [blame] | 344 | ./configure |
| 345 | fi |
| 346 | make -j$(($(nproc) + 1)) |
| 347 | popd |
| 348 | |
| 349 | if [ ! -f config.status ] || [ configure -nt config.status ] ; then |
| 350 | ./configure $prefix $localstatedir |
Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 351 | fi |
| 352 | make -j$(($(nproc) + 1)) |
| 353 | sudo make install |
| 354 | popd |
| 355 | } |
| 356 | |
| 357 | |
| 358 | # OVN Neutron driver functions |
| 359 | # ---------------------------- |
| 360 | |
| 361 | # OVN service sanity check |
| 362 | function ovn_sanity_check { |
Slawek Kaplonski | a52041c | 2022-11-18 11:39:56 +0100 | [diff] [blame] | 363 | if is_service_enabled q-agt neutron-agent; then |
Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 364 | die $LINENO "The q-agt/neutron-agt service must be disabled with OVN." |
| 365 | elif is_service_enabled q-l3 neutron-l3; then |
| 366 | die $LINENO "The q-l3/neutron-l3 service must be disabled with OVN." |
| 367 | elif is_service_enabled q-svc neutron-api && [[ ! $Q_ML2_PLUGIN_MECHANISM_DRIVERS =~ "ovn" ]]; then |
| 368 | die $LINENO "OVN needs to be enabled in \$Q_ML2_PLUGIN_MECHANISM_DRIVERS" |
| 369 | elif is_service_enabled q-svc neutron-api && [[ ! $Q_ML2_PLUGIN_TYPE_DRIVERS =~ "geneve" ]]; then |
| 370 | die $LINENO "Geneve needs to be enabled in \$Q_ML2_PLUGIN_TYPE_DRIVERS to be used with OVN" |
| 371 | fi |
| 372 | } |
| 373 | |
| 374 | # install_ovn() - Collect source and prepare |
| 375 | function install_ovn { |
Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 376 | echo "Installing OVN and dependent packages" |
| 377 | |
| 378 | # Check the OVN configuration |
| 379 | ovn_sanity_check |
| 380 | |
Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 381 | # Install tox, used to generate the config (see devstack/override-defaults) |
| 382 | pip_install tox |
Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 383 | |
| 384 | sudo mkdir -p $OVS_RUNDIR |
| 385 | sudo chown $(whoami) $OVS_RUNDIR |
Lucas Alvares Gomes | e651d9e | 2020-11-19 14:50:01 +0000 | [diff] [blame] | 386 | |
| 387 | if [[ "$OVN_BUILD_FROM_SOURCE" == "True" ]]; then |
| 388 | # If OVS is already installed, remove it, because we're about to |
| 389 | # re-install it from source. |
| 390 | for package in openvswitch openvswitch-switch openvswitch-common; do |
| 391 | if is_package_installed $package ; then |
| 392 | uninstall_package $package |
| 393 | fi |
| 394 | done |
| 395 | |
| 396 | remove_ovs_packages |
| 397 | sudo rm -f $OVS_RUNDIR/* |
| 398 | |
| 399 | compile_ovs $OVN_BUILD_MODULES |
| 400 | if use_new_ovn_repository; then |
Slawek Kaplonski | 5888947 | 2021-12-22 16:00:29 +0100 | [diff] [blame] | 401 | compile_ovn |
Lucas Alvares Gomes | e651d9e | 2020-11-19 14:50:01 +0000 | [diff] [blame] | 402 | fi |
| 403 | |
| 404 | sudo mkdir -p $OVS_PREFIX/var/log/openvswitch |
| 405 | sudo chown $(whoami) $OVS_PREFIX/var/log/openvswitch |
| 406 | sudo mkdir -p $OVS_PREFIX/var/log/ovn |
| 407 | sudo chown $(whoami) $OVS_PREFIX/var/log/ovn |
| 408 | else |
yatinkarel | 6dd896f | 2022-04-26 16:37:07 +0530 | [diff] [blame] | 409 | # Load fixup_ovn_centos |
| 410 | source ${TOP_DIR}/tools/fixup_stuff.sh |
Lucas Alvares Gomes | e651d9e | 2020-11-19 14:50:01 +0000 | [diff] [blame] | 411 | fixup_ovn_centos |
| 412 | install_package $(get_packages openvswitch) |
| 413 | install_package $(get_packages ovn) |
| 414 | fi |
| 415 | |
| 416 | # Ensure that the OVS commands are accessible in the PATH |
| 417 | export PATH=$OVS_BINDIR:$PATH |
Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 418 | |
| 419 | # Archive log files and create new |
| 420 | local log_archive_dir=$LOGDIR/archive |
| 421 | mkdir -p $log_archive_dir |
| 422 | for logfile in ovs-vswitchd.log ovn-northd.log ovn-controller.log ovn-controller-vtep.log ovs-vtep.log ovsdb-server.log ovsdb-server-nb.log ovsdb-server-sb.log; do |
| 423 | if [ -f "$LOGDIR/$logfile" ] ; then |
| 424 | mv "$LOGDIR/$logfile" "$log_archive_dir/$logfile.${CURRENT_LOG_TIME}" |
| 425 | fi |
| 426 | done |
| 427 | |
| 428 | # Install ovsdbapp from source if requested |
| 429 | if use_library_from_git "ovsdbapp"; then |
| 430 | git_clone_by_name "ovsdbapp" |
| 431 | setup_dev_lib "ovsdbapp" |
| 432 | fi |
| 433 | |
| 434 | # Install ovs python module from ovs source. |
| 435 | if [[ "$OVN_INSTALL_OVS_PYTHON_MODULE" == "True" ]]; then |
| 436 | sudo pip uninstall -y ovs |
| 437 | # Clone the OVS repository if it's not yet present |
| 438 | clone_repository $OVS_REPO $DEST/$OVS_REPO_NAME $OVS_BRANCH |
| 439 | sudo pip install -e $DEST/$OVS_REPO_NAME/python |
| 440 | fi |
| 441 | } |
| 442 | |
| 443 | # filter_network_api_extensions() - Remove non-supported API extensions by |
| 444 | # the OVN driver from the list of enabled API extensions |
| 445 | function filter_network_api_extensions { |
| 446 | SUPPORTED_NETWORK_API_EXTENSIONS=$($PYTHON -c \ |
| 447 | 'from neutron.common.ovn import extensions ;\ |
| 448 | print(",".join(extensions.ML2_SUPPORTED_API_EXTENSIONS))') |
| 449 | SUPPORTED_NETWORK_API_EXTENSIONS=$SUPPORTED_NETWORK_API_EXTENSIONS,$($PYTHON -c \ |
| 450 | 'from neutron.common.ovn import extensions ;\ |
| 451 | print(",".join(extensions.ML2_SUPPORTED_API_EXTENSIONS_OVN_L3))') |
| 452 | if is_service_enabled q-qos neutron-qos ; then |
| 453 | SUPPORTED_NETWORK_API_EXTENSIONS="$SUPPORTED_NETWORK_API_EXTENSIONS,qos" |
| 454 | fi |
| 455 | NETWORK_API_EXTENSIONS=${NETWORK_API_EXTENSIONS:-$SUPPORTED_NETWORK_API_EXTENSIONS} |
| 456 | extensions=$(echo $NETWORK_API_EXTENSIONS | tr ', ' '\n' | sort -u) |
| 457 | supported_ext=$(echo $SUPPORTED_NETWORK_API_EXTENSIONS | tr ', ' '\n' | sort -u) |
| 458 | enabled_ext=$(comm -12 <(echo -e "$extensions") <(echo -e "$supported_ext")) |
| 459 | disabled_ext=$(comm -3 <(echo -e "$extensions") <(echo -e "$enabled_ext")) |
| 460 | |
| 461 | # Log a message in case some extensions had to be disabled because |
| 462 | # they are not supported by the OVN driver |
| 463 | if [ ! -z "$disabled_ext" ]; then |
| 464 | _disabled=$(echo $disabled_ext | tr ' ' ',') |
| 465 | echo "The folling network API extensions have been disabled because they are not supported by OVN: $_disabled" |
| 466 | fi |
| 467 | |
| 468 | # Export the final list of extensions that have been enabled and are |
| 469 | # supported by OVN |
| 470 | export NETWORK_API_EXTENSIONS=$(echo $enabled_ext | tr ' ' ',') |
| 471 | } |
| 472 | |
| 473 | function configure_ovn_plugin { |
| 474 | echo "Configuring Neutron for OVN" |
| 475 | |
Slawek Kaplonski | a52041c | 2022-11-18 11:39:56 +0100 | [diff] [blame] | 476 | if is_service_enabled q-svc neutron-api; then |
Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 477 | filter_network_api_extensions |
| 478 | populate_ml2_config /$Q_PLUGIN_CONF_FILE ml2_type_geneve max_header_size=$OVN_GENEVE_OVERHEAD |
| 479 | populate_ml2_config /$Q_PLUGIN_CONF_FILE ovn ovn_nb_connection="$OVN_NB_REMOTE" |
| 480 | populate_ml2_config /$Q_PLUGIN_CONF_FILE ovn ovn_sb_connection="$OVN_SB_REMOTE" |
| 481 | if is_service_enabled tls-proxy; then |
| 482 | populate_ml2_config /$Q_PLUGIN_CONF_FILE ovn ovn_sb_ca_cert="$INT_CA_DIR/ca-chain.pem" |
| 483 | populate_ml2_config /$Q_PLUGIN_CONF_FILE ovn ovn_sb_certificate="$INT_CA_DIR/$DEVSTACK_CERT_NAME.crt" |
| 484 | populate_ml2_config /$Q_PLUGIN_CONF_FILE ovn ovn_sb_private_key="$INT_CA_DIR/private/$DEVSTACK_CERT_NAME.key" |
| 485 | populate_ml2_config /$Q_PLUGIN_CONF_FILE ovn ovn_nb_ca_cert="$INT_CA_DIR/ca-chain.pem" |
| 486 | populate_ml2_config /$Q_PLUGIN_CONF_FILE ovn ovn_nb_certificate="$INT_CA_DIR/$DEVSTACK_CERT_NAME.crt" |
| 487 | populate_ml2_config /$Q_PLUGIN_CONF_FILE ovn ovn_nb_private_key="$INT_CA_DIR/private/$DEVSTACK_CERT_NAME.key" |
| 488 | fi |
| 489 | populate_ml2_config /$Q_PLUGIN_CONF_FILE ovn neutron_sync_mode="$OVN_NEUTRON_SYNC_MODE" |
| 490 | populate_ml2_config /$Q_PLUGIN_CONF_FILE ovn ovn_l3_scheduler="$OVN_L3_SCHEDULER" |
| 491 | populate_ml2_config /$Q_PLUGIN_CONF_FILE securitygroup enable_security_group="$Q_USE_SECGROUP" |
| 492 | inicomment /$Q_PLUGIN_CONF_FILE securitygroup firewall_driver |
| 493 | |
Flavio Fernandes | a2273cc | 2021-02-06 16:23:36 -0500 | [diff] [blame] | 494 | if is_service_enabled q-log neutron-log; then |
| 495 | populate_ml2_config /$Q_PLUGIN_CONF_FILE network_log rate_limit="$Q_LOG_DRIVER_RATE_LIMIT" |
| 496 | populate_ml2_config /$Q_PLUGIN_CONF_FILE network_log burst_limit="$Q_LOG_DRIVER_BURST_LIMIT" |
| 497 | inicomment /$Q_PLUGIN_CONF_FILE network_log local_output_log_base="$Q_LOG_DRIVER_LOG_BASE" |
| 498 | fi |
| 499 | |
Slawek Kaplonski | a52041c | 2022-11-18 11:39:56 +0100 | [diff] [blame] | 500 | if is_service_enabled q-ovn-metadata-agent neutron-ovn-metadata-agent; then |
Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 501 | populate_ml2_config /$Q_PLUGIN_CONF_FILE ovn ovn_metadata_enabled=True |
Rodolfo Alonso Hernandez | 6091df2 | 2023-12-20 23:06:18 +0000 | [diff] [blame] | 502 | elif is_service_enabled q-ovn-agent neutron-ovn-agent && [[ "$OVN_AGENT_EXTENSIONS" =~ 'metadata' ]]; then |
| 503 | populate_ml2_config /$Q_PLUGIN_CONF_FILE ovn ovn_metadata_enabled=True |
Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 504 | else |
| 505 | populate_ml2_config /$Q_PLUGIN_CONF_FILE ovn ovn_metadata_enabled=False |
| 506 | fi |
| 507 | |
| 508 | if is_service_enabled q-dns neutron-dns ; then |
| 509 | iniset $NEUTRON_CONF DEFAULT dns_domain openstackgate.local |
| 510 | populate_ml2_config /$Q_PLUGIN_CONF_FILE ovn dns_servers="$OVN_DNS_SERVERS" |
| 511 | fi |
| 512 | |
| 513 | iniset $NEUTRON_CONF ovs igmp_snooping_enable $OVN_IGMP_SNOOPING_ENABLE |
| 514 | fi |
| 515 | |
| 516 | if is_service_enabled q-dhcp neutron-dhcp ; then |
| 517 | iniset $NEUTRON_CONF DEFAULT dhcp_agent_notification True |
| 518 | else |
| 519 | iniset $NEUTRON_CONF DEFAULT dhcp_agent_notification False |
| 520 | fi |
| 521 | |
| 522 | if is_service_enabled n-api-meta ; then |
Slawek Kaplonski | a52041c | 2022-11-18 11:39:56 +0100 | [diff] [blame] | 523 | if is_service_enabled q-ovn-metadata-agent neutron-ovn-metadata-agent; then |
Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 524 | iniset $NOVA_CONF neutron service_metadata_proxy True |
Rodolfo Alonso Hernandez | 6091df2 | 2023-12-20 23:06:18 +0000 | [diff] [blame] | 525 | elif is_service_enabled q-ovn-agent neutron-ovn-agent && [[ "$OVN_AGENT_EXTENSIONS" =~ 'metadata' ]]; then |
| 526 | iniset $NOVA_CONF neutron service_metadata_proxy True |
Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 527 | fi |
| 528 | fi |
| 529 | } |
| 530 | |
| 531 | function configure_ovn { |
| 532 | echo "Configuring OVN" |
| 533 | |
| 534 | if [ -z "$OVN_UUID" ] ; then |
Slawek Kaplonski | 1ed276c | 2021-03-11 13:10:28 +0100 | [diff] [blame] | 535 | if [ -f $OVS_SYSCONFDIR/system-id.conf ]; then |
| 536 | OVN_UUID=$(cat $OVS_SYSCONFDIR/system-id.conf) |
Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 537 | else |
| 538 | OVN_UUID=$(uuidgen) |
Slawek Kaplonski | 1ed276c | 2021-03-11 13:10:28 +0100 | [diff] [blame] | 539 | echo $OVN_UUID | sudo tee $OVS_SYSCONFDIR/system-id.conf |
| 540 | fi |
| 541 | else |
| 542 | local ovs_uuid |
| 543 | ovs_uuid=$(cat $OVS_SYSCONFDIR/system-id.conf) |
| 544 | if [ "$ovs_uuid" != $OVN_UUID ]; then |
| 545 | echo $OVN_UUID | sudo tee $OVS_SYSCONFDIR/system-id.conf |
Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 546 | fi |
| 547 | fi |
| 548 | |
Lucas Alvares Gomes | 8903d8c | 2021-01-15 09:26:44 +0000 | [diff] [blame] | 549 | # Erase the pre-set configurations from packages. DevStack will |
| 550 | # configure OVS and OVN accordingly for its use. |
| 551 | if [[ "$OVN_BUILD_FROM_SOURCE" == "False" ]] && is_fedora; then |
| 552 | sudo truncate -s 0 /etc/openvswitch/default.conf |
| 553 | sudo truncate -s 0 /etc/sysconfig/openvswitch |
| 554 | sudo truncate -s 0 /etc/sysconfig/ovn |
| 555 | fi |
| 556 | |
Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 557 | # Metadata |
Rodolfo Alonso Hernandez | 6091df2 | 2023-12-20 23:06:18 +0000 | [diff] [blame] | 558 | local sample_file="" |
| 559 | local config_file="" |
| 560 | if is_service_enabled q-ovn-agent neutron-ovn-agent && [[ "$OVN_AGENT_EXTENSIONS" =~ 'metadata' ]] && is_service_enabled ovn-controller; then |
| 561 | sample_file=$NEUTRON_DIR/etc/neutron/plugins/ml2/ovn_agent.ini.sample |
| 562 | config_file=$OVN_AGENT_CONF |
| 563 | elif is_service_enabled q-ovn-metadata-agent neutron-ovn-metadata-agent && is_service_enabled ovn-controller; then |
| 564 | sample_file=$NEUTRON_DIR/etc/neutron_ovn_metadata_agent.ini.sample |
| 565 | config_file=$OVN_META_CONF |
| 566 | fi |
Jaromir Wysoglad | c336b87 | 2024-03-27 11:36:26 +0100 | [diff] [blame] | 567 | if [ -n "$config_file" ]; then |
Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 568 | sudo install -d -o $STACK_USER $NEUTRON_CONF_DIR |
| 569 | |
| 570 | mkdir -p $NEUTRON_DIR/etc/neutron/plugins/ml2 |
| 571 | (cd $NEUTRON_DIR && exec ./tools/generate_config_file_samples.sh) |
| 572 | |
Rodolfo Alonso Hernandez | 6091df2 | 2023-12-20 23:06:18 +0000 | [diff] [blame] | 573 | cp $sample_file $config_file |
| 574 | configure_root_helper_options $config_file |
Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 575 | |
Rodolfo Alonso Hernandez | 6091df2 | 2023-12-20 23:06:18 +0000 | [diff] [blame] | 576 | iniset $config_file DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL |
| 577 | iniset $config_file DEFAULT nova_metadata_host $OVN_META_DATA_HOST |
| 578 | iniset $config_file DEFAULT metadata_workers $API_WORKERS |
| 579 | iniset $config_file DEFAULT state_path $DATA_DIR/neutron |
| 580 | iniset $config_file ovs ovsdb_connection tcp:$OVSDB_SERVER_LOCAL_HOST:6640 |
| 581 | iniset $config_file ovn ovn_sb_connection $OVN_SB_REMOTE |
Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 582 | if is_service_enabled tls-proxy; then |
Rodolfo Alonso Hernandez | 6091df2 | 2023-12-20 23:06:18 +0000 | [diff] [blame] | 583 | iniset $config_file ovn \ |
Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 584 | ovn_sb_ca_cert $INT_CA_DIR/ca-chain.pem |
Rodolfo Alonso Hernandez | 6091df2 | 2023-12-20 23:06:18 +0000 | [diff] [blame] | 585 | iniset $config_file ovn \ |
Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 586 | ovn_sb_certificate $INT_CA_DIR/$DEVSTACK_CERT_NAME.crt |
Rodolfo Alonso Hernandez | 6091df2 | 2023-12-20 23:06:18 +0000 | [diff] [blame] | 587 | iniset $config_file ovn \ |
Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 588 | ovn_sb_private_key $INT_CA_DIR/private/$DEVSTACK_CERT_NAME.key |
| 589 | fi |
Rodolfo Alonso Hernandez | 6091df2 | 2023-12-20 23:06:18 +0000 | [diff] [blame] | 590 | if [[ $config_file == $OVN_AGENT_CONF ]]; then |
| 591 | iniset $config_file agent extensions $OVN_AGENT_EXTENSIONS |
| 592 | iniset $config_file ovn ovn_nb_connection $OVN_NB_REMOTE |
| 593 | fi |
Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 594 | fi |
| 595 | } |
| 596 | |
| 597 | function init_ovn { |
| 598 | # clean up from previous (possibly aborted) runs |
| 599 | # create required data files |
| 600 | |
| 601 | # Assumption: this is a dedicated test system and there is nothing important |
| 602 | # in the ovn, ovn-nb, or ovs databases. We're going to trash them and |
| 603 | # create new ones on each devstack run. |
| 604 | |
Roman Dobosz | bd68251 | 2021-11-26 15:34:50 +0100 | [diff] [blame] | 605 | local mkdir_cmd="mkdir -p ${OVN_DATADIR}" |
Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 606 | |
Roman Dobosz | bd68251 | 2021-11-26 15:34:50 +0100 | [diff] [blame] | 607 | if [[ "$OVN_BUILD_FROM_SOURCE" == "False" ]]; then |
| 608 | mkdir_cmd="sudo ${mkdir_cmd}" |
yatinkarel | b575af0 | 2021-11-26 12:44:41 +0530 | [diff] [blame] | 609 | fi |
Roman Dobosz | bd68251 | 2021-11-26 15:34:50 +0100 | [diff] [blame] | 610 | |
| 611 | $mkdir_cmd |
Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 612 | mkdir -p $OVS_DATADIR |
| 613 | |
| 614 | rm -f $OVS_DATADIR/*.db |
| 615 | rm -f $OVS_DATADIR/.*.db.~lock~ |
Gregory Thiemonge | 6822ff3 | 2021-09-01 09:36:31 +0200 | [diff] [blame] | 616 | sudo rm -f $OVN_DATADIR/*.db |
| 617 | sudo rm -f $OVN_DATADIR/.*.db.~lock~ |
yatinkarel | 7fecba2 | 2023-01-12 17:31:36 +0530 | [diff] [blame] | 618 | sudo rm -f $OVN_RUNDIR/*.sock |
Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 619 | } |
| 620 | |
| 621 | function _start_ovs { |
| 622 | echo "Starting OVS" |
| 623 | if is_service_enabled ovn-controller ovn-controller-vtep ovn-northd; then |
| 624 | # ovsdb-server and ovs-vswitchd are used privately in OVN as openvswitch service names. |
| 625 | enable_service ovsdb-server |
| 626 | enable_service ovs-vswitchd |
| 627 | |
Lucas Alvares Gomes | e651d9e | 2020-11-19 14:50:01 +0000 | [diff] [blame] | 628 | if [[ "$OVN_BUILD_FROM_SOURCE" == "True" ]]; then |
| 629 | if [ ! -f $OVS_DATADIR/conf.db ]; then |
| 630 | ovsdb-tool create $OVS_DATADIR/conf.db $OVS_SHAREDIR/vswitch.ovsschema |
Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 631 | fi |
Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 632 | |
Lucas Alvares Gomes | e651d9e | 2020-11-19 14:50:01 +0000 | [diff] [blame] | 633 | if is_service_enabled ovn-controller-vtep; then |
| 634 | if [ ! -f $OVS_DATADIR/vtep.db ]; then |
| 635 | ovsdb-tool create $OVS_DATADIR/vtep.db $OVS_SHAREDIR/vtep.ovsschema |
| 636 | fi |
| 637 | fi |
| 638 | |
| 639 | local dbcmd="$OVS_SBINDIR/ovsdb-server --remote=punix:$OVS_RUNDIR/db.sock --remote=ptcp:6640:$OVSDB_SERVER_LOCAL_HOST --pidfile --detach --log-file" |
| 640 | dbcmd+=" --remote=db:Open_vSwitch,Open_vSwitch,manager_options" |
| 641 | if is_service_enabled ovn-controller-vtep; then |
| 642 | dbcmd+=" --remote=db:hardware_vtep,Global,managers $OVS_DATADIR/vtep.db" |
| 643 | fi |
| 644 | dbcmd+=" $OVS_DATADIR/conf.db" |
Brian Haley | 71c9965 | 2022-10-19 14:08:43 -0400 | [diff] [blame] | 645 | _run_process ovsdb-server "$dbcmd" "" "$STACK_GROUP" "root" "$OVS_RUNDIR" |
Lucas Alvares Gomes | e651d9e | 2020-11-19 14:50:01 +0000 | [diff] [blame] | 646 | |
| 647 | # Note: ovn-controller will create and configure br-int once it is started. |
| 648 | # So, no need to create it now because nothing depends on that bridge here. |
| 649 | local ovscmd="$OVS_SBINDIR/ovs-vswitchd --log-file --pidfile --detach" |
Brian Haley | 71c9965 | 2022-10-19 14:08:43 -0400 | [diff] [blame] | 650 | _run_process ovs-vswitchd "$ovscmd" "" "$STACK_GROUP" "root" "$OVS_RUNDIR" |
Lucas Alvares Gomes | e651d9e | 2020-11-19 14:50:01 +0000 | [diff] [blame] | 651 | else |
| 652 | _start_process "$OVSDB_SERVER_SERVICE" |
| 653 | _start_process "$OVS_VSWITCHD_SERVICE" |
Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 654 | fi |
Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 655 | |
| 656 | echo "Configuring OVSDB" |
| 657 | if is_service_enabled tls-proxy; then |
Lucas Alvares Gomes | e651d9e | 2020-11-19 14:50:01 +0000 | [diff] [blame] | 658 | sudo ovs-vsctl --no-wait set-ssl \ |
Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 659 | $INT_CA_DIR/private/$DEVSTACK_CERT_NAME.key \ |
| 660 | $INT_CA_DIR/$DEVSTACK_CERT_NAME.crt \ |
| 661 | $INT_CA_DIR/ca-chain.pem |
| 662 | fi |
Lucas Alvares Gomes | e651d9e | 2020-11-19 14:50:01 +0000 | [diff] [blame] | 663 | |
| 664 | sudo ovs-vsctl --no-wait set-manager ptcp:6640:$OVSDB_SERVER_LOCAL_HOST |
| 665 | sudo ovs-vsctl --no-wait set open_vswitch . system-type="devstack" |
| 666 | sudo ovs-vsctl --no-wait set open_vswitch . external-ids:system-id="$OVN_UUID" |
| 667 | sudo ovs-vsctl --no-wait set open_vswitch . external-ids:ovn-remote="$OVN_SB_REMOTE" |
| 668 | sudo ovs-vsctl --no-wait set open_vswitch . external-ids:ovn-bridge="br-int" |
| 669 | sudo ovs-vsctl --no-wait set open_vswitch . external-ids:ovn-encap-type="geneve" |
Brian Haley | c869d59 | 2020-02-28 14:55:08 -0500 | [diff] [blame] | 670 | sudo ovs-vsctl --no-wait set open_vswitch . external-ids:ovn-encap-ip="$TUNNEL_IP" |
Vladislav Belogrudov | 8a38a73 | 2022-05-25 12:58:52 +0300 | [diff] [blame] | 671 | sudo ovs-vsctl --no-wait set open_vswitch . external-ids:hostname=$(hostname) |
Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 672 | # Select this chassis to host gateway routers |
| 673 | if [[ "$ENABLE_CHASSIS_AS_GW" == "True" ]]; then |
Lucas Alvares Gomes | e651d9e | 2020-11-19 14:50:01 +0000 | [diff] [blame] | 674 | sudo ovs-vsctl --no-wait set open_vswitch . external-ids:ovn-cms-options="enable-chassis-as-gw" |
Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 675 | fi |
| 676 | |
Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 677 | if is_provider_network || [[ $Q_USE_PROVIDERNET_FOR_PUBLIC == "True" ]]; then |
| 678 | ovn_base_setup_bridge $OVS_PHYSICAL_BRIDGE |
Lucas Alvares Gomes | e651d9e | 2020-11-19 14:50:01 +0000 | [diff] [blame] | 679 | sudo ovs-vsctl set open . external-ids:ovn-bridge-mappings=${PHYSICAL_NETWORK}:${OVS_PHYSICAL_BRIDGE} |
Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 680 | fi |
| 681 | |
| 682 | if is_service_enabled ovn-controller-vtep ; then |
| 683 | ovn_base_setup_bridge br-v |
| 684 | vtep-ctl add-ps br-v |
Brian Haley | c869d59 | 2020-02-28 14:55:08 -0500 | [diff] [blame] | 685 | vtep-ctl set Physical_Switch br-v tunnel_ips=$TUNNEL_IP |
Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 686 | |
| 687 | enable_service ovs-vtep |
| 688 | local vtepcmd="$OVS_SCRIPTDIR/ovs-vtep --log-file --pidfile --detach br-v" |
Brian Haley | 71c9965 | 2022-10-19 14:08:43 -0400 | [diff] [blame] | 689 | _run_process ovs-vtep "$vtepcmd" "" "$STACK_GROUP" "root" "$OVS_RUNDIR" |
Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 690 | |
| 691 | vtep-ctl set-manager tcp:$HOST_IP:6640 |
| 692 | fi |
| 693 | fi |
| 694 | } |
| 695 | |
Fernando Royo | a976168 | 2024-12-04 16:44:52 +0100 | [diff] [blame] | 696 | function _wait_for_ovn_and_set_custom_config { |
| 697 | # Wait for the service to be ready |
| 698 | # Check for socket and db files for both OVN NB and SB |
| 699 | wait_for_sock_file $OVN_RUNDIR/ovnnb_db.sock |
| 700 | wait_for_sock_file $OVN_RUNDIR/ovnsb_db.sock |
| 701 | wait_for_db_file $OVN_DATADIR/ovnnb_db.db |
| 702 | wait_for_db_file $OVN_DATADIR/ovnsb_db.db |
| 703 | |
| 704 | if is_service_enabled tls-proxy; then |
| 705 | sudo ovn-nbctl --db=unix:$OVN_RUNDIR/ovnnb_db.sock set-ssl $INT_CA_DIR/private/$DEVSTACK_CERT_NAME.key $INT_CA_DIR/$DEVSTACK_CERT_NAME.crt $INT_CA_DIR/ca-chain.pem |
| 706 | sudo ovn-sbctl --db=unix:$OVN_RUNDIR/ovnsb_db.sock set-ssl $INT_CA_DIR/private/$DEVSTACK_CERT_NAME.key $INT_CA_DIR/$DEVSTACK_CERT_NAME.crt $INT_CA_DIR/ca-chain.pem |
| 707 | fi |
| 708 | |
| 709 | sudo ovn-nbctl --db=unix:$OVN_RUNDIR/ovnnb_db.sock set-connection p${OVN_PROTO}:6641:$SERVICE_LISTEN_ADDRESS -- set connection . inactivity_probe=60000 |
| 710 | sudo ovn-sbctl --db=unix:$OVN_RUNDIR/ovnsb_db.sock set-connection p${OVN_PROTO}:6642:$SERVICE_LISTEN_ADDRESS -- set connection . inactivity_probe=60000 |
| 711 | sudo ovs-appctl -t $OVN_RUNDIR/ovnnb_db.ctl vlog/set console:off syslog:$OVN_DBS_LOG_LEVEL file:$OVN_DBS_LOG_LEVEL |
| 712 | sudo ovs-appctl -t $OVN_RUNDIR/ovnsb_db.ctl vlog/set console:off syslog:$OVN_DBS_LOG_LEVEL file:$OVN_DBS_LOG_LEVEL |
| 713 | } |
| 714 | |
Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 715 | # start_ovn() - Start running processes, including screen |
| 716 | function start_ovn { |
| 717 | echo "Starting OVN" |
| 718 | |
| 719 | _start_ovs |
| 720 | |
| 721 | local SCRIPTDIR=$OVN_SCRIPTDIR |
| 722 | if ! use_new_ovn_repository; then |
| 723 | SCRIPTDIR=$OVS_SCRIPTDIR |
| 724 | fi |
| 725 | |
| 726 | if is_service_enabled ovn-northd ; then |
Lucas Alvares Gomes | e651d9e | 2020-11-19 14:50:01 +0000 | [diff] [blame] | 727 | if [[ "$OVN_BUILD_FROM_SOURCE" == "True" ]]; then |
| 728 | local cmd="/bin/bash $SCRIPTDIR/ovn-ctl --no-monitor start_northd" |
| 729 | local stop_cmd="/bin/bash $SCRIPTDIR/ovn-ctl stop_northd" |
Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 730 | |
Brian Haley | 71c9965 | 2022-10-19 14:08:43 -0400 | [diff] [blame] | 731 | _run_process ovn-northd "$cmd" "$stop_cmd" "$STACK_GROUP" "root" "$OVN_RUNDIR" |
Lucas Alvares Gomes | e651d9e | 2020-11-19 14:50:01 +0000 | [diff] [blame] | 732 | else |
| 733 | _start_process "$OVN_NORTHD_SERVICE" |
| 734 | fi |
| 735 | |
Fernando Royo | a976168 | 2024-12-04 16:44:52 +0100 | [diff] [blame] | 736 | _wait_for_ovn_and_set_custom_config |
Lucas Alvares Gomes | e651d9e | 2020-11-19 14:50:01 +0000 | [diff] [blame] | 737 | |
Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 738 | fi |
| 739 | |
| 740 | if is_service_enabled ovn-controller ; then |
Lucas Alvares Gomes | e651d9e | 2020-11-19 14:50:01 +0000 | [diff] [blame] | 741 | if [[ "$OVN_BUILD_FROM_SOURCE" == "True" ]]; then |
| 742 | local cmd="/bin/bash $SCRIPTDIR/ovn-ctl --no-monitor start_controller" |
| 743 | local stop_cmd="/bin/bash $SCRIPTDIR/ovn-ctl stop_controller" |
Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 744 | |
Brian Haley | 71c9965 | 2022-10-19 14:08:43 -0400 | [diff] [blame] | 745 | _run_process ovn-controller "$cmd" "$stop_cmd" "$STACK_GROUP" "root" "$OVN_RUNDIR" |
Lucas Alvares Gomes | e651d9e | 2020-11-19 14:50:01 +0000 | [diff] [blame] | 746 | else |
| 747 | _start_process "$OVN_CONTROLLER_SERVICE" |
| 748 | fi |
Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 749 | fi |
| 750 | |
| 751 | if is_service_enabled ovn-controller-vtep ; then |
Lucas Alvares Gomes | e651d9e | 2020-11-19 14:50:01 +0000 | [diff] [blame] | 752 | if [[ "$OVN_BUILD_FROM_SOURCE" == "True" ]]; then |
| 753 | local cmd="$OVS_BINDIR/ovn-controller-vtep --log-file --pidfile --detach --ovnsb-db=$OVN_SB_REMOTE" |
Brian Haley | 71c9965 | 2022-10-19 14:08:43 -0400 | [diff] [blame] | 754 | _run_process ovn-controller-vtep "$cmd" "" "$STACK_GROUP" "root" "$OVN_RUNDIR" |
Lucas Alvares Gomes | e651d9e | 2020-11-19 14:50:01 +0000 | [diff] [blame] | 755 | else |
| 756 | _start_process "$OVN_CONTROLLER_VTEP_SERVICE" |
| 757 | fi |
Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 758 | fi |
| 759 | |
Slawek Kaplonski | a52041c | 2022-11-18 11:39:56 +0100 | [diff] [blame] | 760 | if is_service_enabled q-ovn-metadata-agent neutron-ovn-metadata-agent; then |
Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 761 | run_process q-ovn-metadata-agent "$NEUTRON_OVN_BIN_DIR/$NEUTRON_OVN_METADATA_BINARY --config-file $OVN_META_CONF" |
| 762 | # Format logging |
| 763 | setup_logging $OVN_META_CONF |
| 764 | fi |
| 765 | |
Rodolfo Alonso Hernandez | 6091df2 | 2023-12-20 23:06:18 +0000 | [diff] [blame] | 766 | if is_service_enabled q-ovn-agent neutron-ovn-agent; then |
| 767 | run_process q-ovn-agent "$NEUTRON_OVN_BIN_DIR/$NEUTRON_OVN_AGENT_BINARY --config-file $OVN_AGENT_CONF" |
| 768 | # Format logging |
| 769 | setup_logging $OVN_AGENT_CONF |
| 770 | fi |
Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 771 | } |
| 772 | |
| 773 | function _stop_ovs_dp { |
| 774 | sudo ovs-dpctl dump-dps | sudo xargs -n1 ovs-dpctl del-dp |
| 775 | modprobe -q -r vport_geneve vport_vxlan openvswitch || true |
| 776 | } |
| 777 | |
Lucas Alvares Gomes | e651d9e | 2020-11-19 14:50:01 +0000 | [diff] [blame] | 778 | function _stop_process { |
| 779 | local service=$1 |
| 780 | echo "Stopping process $service" |
| 781 | if $SYSTEMCTL is-enabled $service; then |
| 782 | $SYSTEMCTL stop $service |
| 783 | $SYSTEMCTL disable $service |
| 784 | fi |
| 785 | } |
| 786 | |
Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 787 | function stop_ovn { |
Slawek Kaplonski | a52041c | 2022-11-18 11:39:56 +0100 | [diff] [blame] | 788 | if is_service_enabled q-ovn-metadata-agent neutron-ovn-metadata-agent; then |
Bence Romsics | 71c3c40 | 2022-12-21 13:50:54 +0100 | [diff] [blame] | 789 | # pkill takes care not to kill itself, but it may kill its parent |
| 790 | # sudo unless we use the "ps | grep [f]oo" trick |
| 791 | sudo pkill -9 -f "[h]aproxy" || : |
Lucas Alvares Gomes | e651d9e | 2020-11-19 14:50:01 +0000 | [diff] [blame] | 792 | _stop_process "devstack@q-ovn-metadata-agent.service" |
Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 793 | fi |
Rodolfo Alonso Hernandez | 6091df2 | 2023-12-20 23:06:18 +0000 | [diff] [blame] | 794 | if is_service_enabled q-ovn-agent neutron-ovn-agent; then |
| 795 | # pkill takes care not to kill itself, but it may kill its parent |
| 796 | # sudo unless we use the "ps | grep [f]oo" trick |
| 797 | sudo pkill -9 -f "[h]aproxy" || : |
| 798 | _stop_process "devstack@q-ovn-agent.service" |
| 799 | fi |
Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 800 | if is_service_enabled ovn-controller-vtep ; then |
Lucas Alvares Gomes | e651d9e | 2020-11-19 14:50:01 +0000 | [diff] [blame] | 801 | _stop_process "$OVN_CONTROLLER_VTEP_SERVICE" |
Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 802 | fi |
| 803 | if is_service_enabled ovn-controller ; then |
Lucas Alvares Gomes | e651d9e | 2020-11-19 14:50:01 +0000 | [diff] [blame] | 804 | _stop_process "$OVN_CONTROLLER_SERVICE" |
Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 805 | fi |
| 806 | if is_service_enabled ovn-northd ; then |
Lucas Alvares Gomes | e651d9e | 2020-11-19 14:50:01 +0000 | [diff] [blame] | 807 | _stop_process "$OVN_NORTHD_SERVICE" |
Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 808 | fi |
| 809 | if is_service_enabled ovs-vtep ; then |
Lucas Alvares Gomes | e651d9e | 2020-11-19 14:50:01 +0000 | [diff] [blame] | 810 | _stop_process "devstack@ovs-vtep.service" |
Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 811 | fi |
| 812 | |
Lucas Alvares Gomes | e651d9e | 2020-11-19 14:50:01 +0000 | [diff] [blame] | 813 | _stop_process "$OVS_VSWITCHD_SERVICE" |
| 814 | _stop_process "$OVSDB_SERVER_SERVICE" |
Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 815 | |
| 816 | _stop_ovs_dp |
| 817 | } |
| 818 | |
| 819 | function _cleanup { |
| 820 | local path=${1:-$DEST/$OVN_REPO_NAME} |
| 821 | pushd $path |
| 822 | cd $path |
| 823 | sudo make uninstall |
| 824 | sudo make distclean |
| 825 | popd |
| 826 | } |
| 827 | |
| 828 | # cleanup_ovn() - Remove residual data files, anything left over from previous |
| 829 | # runs that a clean run would need to clean up |
| 830 | function cleanup_ovn { |
| 831 | local ovn_path=$DEST/$OVN_REPO_NAME |
| 832 | local ovs_path=$DEST/$OVS_REPO_NAME |
| 833 | |
| 834 | if [ -d $ovn_path ]; then |
| 835 | _cleanup $ovn_path |
| 836 | fi |
| 837 | |
| 838 | if [ -d $ovs_path ]; then |
| 839 | _cleanup $ovs_path |
| 840 | fi |
| 841 | |
Artur Angiel | bfbd2be | 2022-04-10 11:31:21 +0200 | [diff] [blame] | 842 | sudo rm -rf $OVN_RUNDIR |
Lucas Alvares Gomes | 1d468d4 | 2020-06-09 14:35:52 +0100 | [diff] [blame] | 843 | } |