forked from pool/python-glanceclient
We want that OBS-URL: https://build.opensuse.org/request/show/139813 OBS-URL: https://build.opensuse.org/package/show/Cloud:OpenStack:Essex/python-glanceclient?expand=0&rev=1
24 lines
1.2 KiB
Diff
24 lines
1.2 KiB
Diff
diff -ruN a/glanceclient/shell.py b/glanceclient/shell.py
|
|
--- a/glanceclient/shell.py 2012-07-26 16:27:05.393086964 +0200
|
|
+++ b/glanceclient/shell.py 2012-07-26 16:41:07.376042262 +0200
|
|
@@ -206,7 +206,8 @@
|
|
password=kwargs.get('password'),
|
|
tenant_id=kwargs.get('tenant_id'),
|
|
tenant_name=kwargs.get('tenant_name'),
|
|
- auth_url=kwargs.get('auth_url'))
|
|
+ auth_url=kwargs.get('auth_url'),
|
|
+ insecure=kwargs.get('insecure'))
|
|
service_type = kwargs.get('service_type') or 'image'
|
|
endpoint_type = kwargs.get('endpoint_type') or 'publicURL'
|
|
endpoint = _ksclient.service_catalog.url_for(
|
|
@@ -272,7 +273,8 @@
|
|
'tenant_name': args.os_tenant_name,
|
|
'auth_url': args.os_auth_url,
|
|
'service_type': args.os_service_type,
|
|
- 'endpoint_type': args.os_endpoint_type
|
|
+ 'endpoint_type': args.os_endpoint_type,
|
|
+ 'insecure': args.insecure
|
|
}
|
|
endpoint, token = self._authenticate(**kwargs)
|
|
|