Fix the reference to the charm-helpers

The charm-helpers project moved from launchpad to github.
Create a copyright file to work around pep8 warning.

Change-Id: I215b09b97e4cd9ebbad5dcb41a03d0c09dcfd9ef
This commit is contained in:
Kyle L. Henderson 2017-10-13 12:43:27 -05:00
parent a8e70b4d34
commit 7125a94710
3 changed files with 4 additions and 3 deletions

1
src/copyright Normal file
View File

@ -0,0 +1 @@
See the LICENSE file in the root directory.

View File

@ -1,7 +1,7 @@
# charm-proof
charm-tools>=2.0.0
# amulet deployment helpers
bzr+lp:charm-helpers#egg=charmhelpers
git+https://github.com/juju/charm-helpers
# BEGIN: Amulet OpenStack Charm Helper Requirements
# Liberty client lower constraints
amulet>=1.14.3,<2.0

View File

@ -102,10 +102,10 @@ class TroveBasicDeployment(amulet_deployment.OpenStackAmuletDeployment):
# Authenticate admin with trove endpoint
trove_ep = self.keystone.service_catalog.url_for(
service_type='database',
endpoint_type='publicURL')
interface='publicURL')
keystone_ep = self.keystone.service_catalog.url_for(
service_type='identity',
endpoint_type='publicURL')
interface='publicURL')
self.trove = trove_client.Client(
version='1.0',
auth_url=keystone_ep,