summaryrefslogtreecommitdiff
path: root/trove/common/cfg.py
diff options
context:
space:
mode:
authorLingxian Kong <anlin.kong@gmail.com>2020-01-13 15:43:02 +1300
committerLingxian Kong <anlin.kong@gmail.com>2020-01-19 16:11:41 +1300
commitdfe826402b8216650d86a70bf2c3a6d478e9048b (patch)
tree730a306cf7ae34c07d2793ffc772bb28a25a60df /trove/common/cfg.py
parentd57354942eff0faff3c40d1b8dcda7a465ff1d75 (diff)
downloadtrove-dfe826402b8216650d86a70bf2c3a6d478e9048b.tar.gz
Config admin clients as default
Change-Id: Ib4dc349ab7ed4193189ed6bc2bae699d51064998
Diffstat (limited to 'trove/common/cfg.py')
-rw-r--r--trove/common/cfg.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/trove/common/cfg.py b/trove/common/cfg.py
index 3a627cbe..37027bd9 100644
--- a/trove/common/cfg.py
+++ b/trove/common/cfg.py
@@ -334,13 +334,13 @@ common_opts = [
default='trove.common.clients.guest_client',
help='Client to send Guest Agent calls to.'),
cfg.StrOpt('remote_nova_client',
- default='trove.common.clients.nova_client',
+ default='trove.common.clients_admin.nova_client_trove_admin',
help='Client to send Nova calls to.'),
cfg.StrOpt('remote_neutron_client',
- default='trove.common.clients.neutron_client',
+ default='trove.common.clients_admin.neutron_client_trove_admin',
help='Client to send Neutron calls to.'),
cfg.StrOpt('remote_cinder_client',
- default='trove.common.clients.cinder_client',
+ default='trove.common.clients_admin.cinder_client_trove_admin',
help='Client to send Cinder calls to.'),
cfg.StrOpt('remote_swift_client',
default='trove.common.clients.swift_client',
@@ -349,7 +349,7 @@ common_opts = [
default='trove.common.trove_remote.trove_client',
help='Client to send Trove calls to.'),
cfg.StrOpt('remote_glance_client',
- default='trove.common.clients.glance_client',
+ default='trove.common.clients_admin.glance_client_trove_admin',
help='Client to send Glance calls to.'),
cfg.StrOpt('exists_notification_transformer',
help='Transformer for exists notifications.'),