1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
|
# Copyright (c) 2020 Cloudbase Solutions Srl
#
# 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 coriolisclient import base
class MinionPool(base.Resource):
pass
class MinionPoolManager(base.BaseManager):
resource_class = MinionPool
def __init__(self, api):
super(MinionPoolManager, self).__init__(api)
def list(self):
return self._list('/minion_pools', response_key='minion_pools')
def get(self, minion_pool):
return self._get(
'/minion_pools/%s' % base.getid(minion_pool),
response_key='minion_pool')
def create(
self, name, endpoint, platform, os_type,
environment_options,
minimum_minions=None, maximum_minions=None,
minion_max_idle_time=None, minion_retention_strategy=None,
notes=None, skip_allocation=False):
data = {
"name": name,
"platform": platform,
"os_type": os_type,
"endpoint_id": base.getid(endpoint),
"environment_options": environment_options,
"skip_allocation": skip_allocation}
if minimum_minions is not None:
data['minimum_minions'] = minimum_minions
if maximum_minions is not None:
data['maximum_minions'] = maximum_minions
if minion_max_idle_time is not None:
data['minion_max_idle_time'] = minion_max_idle_time
if minion_retention_strategy is not None:
data['minion_retention_strategy'] = minion_retention_strategy
if notes:
data['notes'] = notes
return self._post(
'/minion_pools', {'minion_pool': data},
response_key='minion_pool')
def update(self, minion_pool, updated_values):
data = {
"minion_pool": updated_values}
return self._put(
'/minion_pools/%s' % base.getid(minion_pool), data, 'minion_pool')
def delete(self, minion_pool):
return self._delete('/minion_pools/%s' % base.getid(minion_pool))
def allocate_minion_pool(self, minion_pool):
return self._post(
'/minion_pools/%s/actions' % base.getid(minion_pool),
{'allocate': None}, response_key='minion_pool')
def refresh_minion_pool(self, minion_pool):
return self._post(
'/minion_pools/%s/actions' % base.getid(minion_pool),
{'refresh': None}, response_key='minion_pool')
def deallocate_minion_pool(self, minion_pool, force=False):
return self._post(
'/minion_pools/%s/actions' % base.getid(minion_pool),
{'deallocate': {'force': force}}, response_key='minion_pool')
|