c6cee92073
The OVN Octavia provider driver in the OvnProviderHelper class caches these attributes: ovn_nbdb_api_for_events ovn_nb_idl_for_events ovn_nbdb_api to not re-create things each time OVN IDL that is used for handling events is called. We should be using the Octavia Driver Provider Agent framework instead to not have those long-running IDLs in the API process. This change: - Creates driver provider agent and registers its entry point - While setting up the driver agent instance, start IDL that will handle events - Stop caching ovn_nbdb_api, ovn_nb_idl_for_events and ovn_nbdb_api_for_events in the OvnProviderHelper class Change-Id: I0034a48997bd6b95e1b51bfcbd56e8372b35e62f Closes-bug: #1871355
50 lines
1.4 KiB
Bash
Executable File
50 lines
1.4 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# devstack plugin for octavia
|
|
GET_PIP_CACHE_LOCATION=/opt/stack/cache/files/get-pip.py
|
|
|
|
# How to connect to ovsdb-server hosting the OVN NB database
|
|
if is_service_enabled tls-proxy; then
|
|
OVN_PROTO=ssl
|
|
else
|
|
OVN_PROTO=tcp
|
|
fi
|
|
OVN_NB_REMOTE=${OVN_NB_REMOTE:-$OVN_PROTO:$SERVICE_HOST:6641}
|
|
|
|
function _configure_provider_driver {
|
|
iniset ${OCTAVIA_CONF} api_settings enabled_provider_drivers ${OCTAVIA_PROVIDER_DRIVERS}
|
|
iniset ${OCTAVIA_CONF} driver_agent enabled_provider_agents ${OCTAVIA_PROVIDER_AGENTS}
|
|
iniset ${OCTAVIA_CONF} ovn ovn_nb_connection "$OVN_NB_REMOTE"
|
|
|
|
if is_service_enabled tls-proxy; then
|
|
iniset ${OCTAVIA_CONF} ovn ovn_nb_connection "$OVN_NB_REMOTE"
|
|
iniset ${OCTAVIA_CONF} ovn ovn_nb_ca_cert "$INT_CA_DIR/ca-chain.pem"
|
|
iniset ${OCTAVIA_CONF} ovn ovn_nb_certificate "$INT_CA_DIR/$DEVSTACK_CERT_NAME.crt"
|
|
iniset ${OCTAVIA_CONF} ovn ovn_nb_private_key "$INT_CA_DIR/private/$DEVSTACK_CERT_NAME.key"
|
|
fi
|
|
}
|
|
|
|
function is_ovn_enabled {
|
|
[[ $NEUTRON_AGENT == "ovn" ]] && return 0
|
|
return 1
|
|
}
|
|
|
|
function _install_provider_driver {
|
|
setup_develop $OVN_OCTAVIA_PROVIDER_DIR
|
|
}
|
|
|
|
if [[ "$1" == "stack" ]]; then
|
|
case "$2" in
|
|
post-config)
|
|
if is_ovn_enabled; then
|
|
_configure_provider_driver
|
|
fi
|
|
;;
|
|
install)
|
|
if is_ovn_enabled; then
|
|
_install_provider_driver
|
|
fi
|
|
;;
|
|
esac
|
|
fi
|