Update solum-app-setup

Update the script with respect to a recent solum cli change:
https://review.openstack.org/#/c/139266

Change-Id: Ic44c9227540ca5ca4527981aabd1061e3fd97513
This commit is contained in:
James Li
2014-12-05 23:18:15 +00:00
parent 86e732d2c6
commit 835d04c757

View File

@@ -45,9 +45,10 @@ PLAN_TEMPLATE = {"version": 1,
def _get_solum_client():
args = {}
args['os_username'] = os.getenv('OS_USERNAME', '')
args['os_password'] = os.getenv('OS_PASSWORD', '')
args['os_tenant_name'] = os.getenv('OS_TENANT_NAME', '')
args['os_auth_url'] = os.getenv('OS_AUTH_URL', '')
args['os_password'] = os.getenv('OS_PASSWORD', '')
args['solum_url'] = os.getenv('SOLUM_URL', '')
try:
client = solum_client.get_client(SOLUM_API_VERSION, **args)