
This change allows the from_config factory function to better support two angles from which it will most commonly be used. 1. When SDK is being used from within OSC, OSC will have obtained configuration data from OCC and is better served by passing it directly into SDK rather than SDK additionally accessing that data. 2. Direct users of the SDK, such as customer applications, are less likely to have dealt directly with OCC and are better served by just passing in the name of the configuration they want to run with. Closes-Bug:1513920 Change-Id: I06f871b822e4b8b0cc8cc8db9e7ccff91f918e5a
80 lines
2.6 KiB
Python
80 lines
2.6 KiB
Python
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
"""
|
|
Connect to an OpenStack cloud.
|
|
|
|
For a full guide see TODO(etoews):link to docs on developer.openstack.org
|
|
"""
|
|
|
|
import os
|
|
|
|
import os_client_config
|
|
|
|
from openstack import connection
|
|
from openstack import profile
|
|
from openstack import utils
|
|
import sys
|
|
|
|
utils.enable_logging(True, stream=sys.stdout)
|
|
|
|
#: Defines the OpenStack Client Config (OCC) cloud key in your OCC config
|
|
#: file, typically in $HOME/.config/openstack/clouds.yaml. That configuration
|
|
#: will determine where the examples will be run and what resource defaults
|
|
#: will be used to run the examples.
|
|
TEST_CLOUD = os.getenv('OS_TEST_CLOUD', 'test_cloud')
|
|
|
|
|
|
class Opts(object):
|
|
def __init__(self, cloud_name='test_cloud', debug=False):
|
|
self.cloud = cloud_name
|
|
self.debug = debug
|
|
|
|
|
|
def _get_resource_value(resource_key, default):
|
|
try:
|
|
return cloud.config['example'][resource_key]
|
|
except KeyError:
|
|
return default
|
|
|
|
opts = Opts(cloud_name=TEST_CLOUD)
|
|
occ = os_client_config.OpenStackConfig()
|
|
cloud = occ.get_one_cloud(opts.cloud, argparse=opts)
|
|
|
|
IMAGE_NAME = _get_resource_value('image_name', 'fedora-20.x86_64')
|
|
FLAVOR_NAME = _get_resource_value('flavor_name', 'm1.small')
|
|
NETWORK_NAME = _get_resource_value('network_name', 'private')
|
|
KEYPAIR_NAME = _get_resource_value('keypair_name', 'openstacksdk-example')
|
|
PRIVATE_KEYPAIR_FILE = _get_resource_value('private_keypair_file',
|
|
"{home}/{ssh}/id_rsa.{key}".format(
|
|
home=os.getenv("HOME"),
|
|
ssh='.ssh',
|
|
key=KEYPAIR_NAME))
|
|
|
|
|
|
def create_connection_from_config():
|
|
return connection.from_config(cloud_config=cloud, options=opts)
|
|
|
|
|
|
def create_connection(auth_url, region, project_name, username, password):
|
|
prof = profile.Profile()
|
|
prof.set_region(profile.Profile.ALL, region)
|
|
|
|
return connection.Connection(
|
|
profile=prof,
|
|
user_agent='examples',
|
|
auth_url=auth_url,
|
|
project_name=project_name,
|
|
username=username,
|
|
password=password
|
|
)
|