Files
python-fuelclient/fuelclient/v1/openstack_config.py
Alexander Saprykin 78a01f5aa1 Add multinode support to openstack config CLIv2
* Option --node accepts list of node ids.
* Improve client library, make many parameters optional.
* Add unit tests for openstack config library code.

Related-Bug: #1557462
Depends-On: I741208e301f9b4ec48329ba63ffeed2b5697f123
Change-Id: Ib6e6ab3cbba6fb28cdec5738267d7aab354dce9f
2016-04-04 14:56:48 +00:00

51 lines
1.8 KiB
Python

# Copyright 2015 Mirantis, Inc.
#
# 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.
from fuelclient import objects
from fuelclient.v1 import base_v1
class OpenstackConfigClient(base_v1.BaseV1Client):
_entity_wrapper = objects.OpenstackConfig
def upload(self, path, cluster_id, node_ids=None, node_role=None):
data = self._entity_wrapper.read_file(path)
return self._entity_wrapper.create(
cluster_id=cluster_id, configuration=data['configuration'],
node_ids=node_ids, node_role=node_role)
def download(self, config_id, path):
config = self._entity_wrapper(config_id)
config.write_file(path, {
'configuration': config.data['configuration']})
return path
def execute(self, cluster_id, config_id=None, node_ids=None,
node_role=None, force=False):
return self._entity_wrapper.execute(
cluster_id=cluster_id, config_id=config_id, node_ids=node_ids,
node_role=node_role, force=force)
def get_filtered(self, cluster_id, node_ids=None,
node_role=None, is_active=True):
return self._entity_wrapper.get_filtered_data(
cluster_id=cluster_id, node_ids=node_ids,
node_role=node_role, is_active=is_active)
def get_client():
return OpenstackConfigClient()