dragonflow/devstack/etcd_driver
Omer Anson 49a78472ed Support use openstack's base-service etcd
This is to support openstack's etcd bast service, but not remove the
functionality.

Also change the default port for etcd to 2379, since that's the port
set in openstack.

Have the gate test against openstack's etcd, rather than dragonflow's
etcd.

Remove the option df-etcd-server. Since we use openstack's etcd service,
it doesn't make sense to install our own.

Change-Id: Id14c04e0a22016534b9bd810af13429c15dd6f2f
2017-06-27 11:16:06 +00:00

36 lines
527 B
Bash

#!/bin/bash
#
#
# ``plugin.sh`` calls the following methods in the sourced driver:
#
# - nb_db_driver_install_server
# - nb_db_driver_install_client
# - nb_db_driver_start_server
# - nb_db_driver_stop_server
# - nb_db_driver_clean
# - nb_db_driver_configure
function nb_db_driver_install_server {
:
}
function nb_db_driver_install_client {
:
}
function nb_db_driver_start_server {
:
}
function nb_db_driver_stop_server {
:
}
function nb_db_driver_clean {
:
}
function nb_db_driver_configure {
:
}