Change default cert manager to barbican

Modify cert manager init to load cert manager config of barbican
Modify default neutron conf file to be barbican cert manager

Change-Id: I92f15e50749839573194e37cc417b46566ffe298
This commit is contained in:
Trevor Vardeman 2015-03-16 17:25:17 -05:00
parent ec5cfefc89
commit e52be929cb
2 changed files with 4 additions and 2 deletions

View File

@ -62,6 +62,7 @@ service_provider=LOADBALANCER:Haproxy:neutron_lbaas.services.loadbalancer.driver
# service_provider = LOADBALANCERV2:A10Networks:neutron_lbaas.drivers.a10networks.driver_v2.ThunderDriver:default
[certificates]
# cert_manager_class = neutron_lbaas.common.cert_manager.local_cert_manager
# cert_manager_class = neutron_lbaas.common.cert_manager.barbican_cert_manager
## The following option is only valid when using neutron_lbaas.common.cert_manager.local_cert_manager
# storage_path = /var/lib/neutron-lbaas/certificates/

View File

@ -18,7 +18,8 @@ from oslo_config import cfg
CONF = cfg.CONF
CERT_MANAGER_DEFAULT = 'neutron_lbaas.common.cert_manager.local_cert_manager'
CERT_MANAGER_DEFAULT = ('neutron_lbaas.common.cert_manager.'
'barbican_cert_manager')
cert_manager_opts = [
cfg.StrOpt('cert_manager_class',