Add option to wait for add and delete template
Add --wait to the cli as an option Change-Id: I1980dba674e2baee4877f465a9faaffd9feb86cb
This commit is contained in:
parent
a4bcd82eb9
commit
cc07041fc4
vitrageclient
@ -11,6 +11,7 @@
|
|||||||
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
||||||
# License for the specific language governing permissions and limitations
|
# License for the specific language governing permissions and limitations
|
||||||
# under the License.
|
# under the License.
|
||||||
|
import time
|
||||||
|
|
||||||
|
|
||||||
def args_to_dict(args, attrs):
|
def args_to_dict(args, attrs):
|
||||||
@ -36,3 +37,23 @@ def get_client(obj):
|
|||||||
return obj.app.client_manager.rca
|
return obj.app.client_manager.rca
|
||||||
else:
|
else:
|
||||||
return obj.app.client
|
return obj.app.client
|
||||||
|
|
||||||
|
|
||||||
|
def wait_for_action_to_end(timeout, func, **kwargs):
|
||||||
|
count = 0
|
||||||
|
while count < timeout:
|
||||||
|
if func(**kwargs):
|
||||||
|
return True
|
||||||
|
count += 1
|
||||||
|
time.sleep(1)
|
||||||
|
return False
|
||||||
|
|
||||||
|
|
||||||
|
def find_template_with_uuid(uuid, templates):
|
||||||
|
return next(
|
||||||
|
(
|
||||||
|
template
|
||||||
|
for template in templates
|
||||||
|
if template['uuid'] == uuid
|
||||||
|
), None
|
||||||
|
)
|
||||||
|
@ -12,13 +12,15 @@
|
|||||||
# License for the specific language governing permissions and limitations
|
# License for the specific language governing permissions and limitations
|
||||||
# under the License.
|
# under the License.
|
||||||
|
|
||||||
|
import sys
|
||||||
|
|
||||||
from cliff import command
|
from cliff import command
|
||||||
from cliff import lister
|
from cliff import lister
|
||||||
from cliff import show
|
from cliff import show
|
||||||
|
from oslo_log import log
|
||||||
|
|
||||||
from vitrageclient.common import utils
|
from vitrageclient.common import utils
|
||||||
|
from vitrageclient.common.utils import find_template_with_uuid
|
||||||
from oslo_log import log
|
|
||||||
|
|
||||||
LOG = log.getLogger(__name__)
|
LOG = log.getLogger(__name__)
|
||||||
|
|
||||||
@ -55,7 +57,6 @@ class TemplateValidate(show.ShowOne):
|
|||||||
return 'json'
|
return 'json'
|
||||||
|
|
||||||
def take_action(self, parsed_args):
|
def take_action(self, parsed_args):
|
||||||
|
|
||||||
cli_param_list = parsed_args.params
|
cli_param_list = parsed_args.params
|
||||||
params = _parse_template_params(cli_param_list)
|
params = _parse_template_params(cli_param_list)
|
||||||
|
|
||||||
@ -128,6 +129,17 @@ class TemplateAdd(lister.Lister):
|
|||||||
'used, for example: --params '
|
'used, for example: --params '
|
||||||
'template_name=cpu_problem '
|
'template_name=cpu_problem '
|
||||||
'alarm_name=\'High CPU Load\'')
|
'alarm_name=\'High CPU Load\'')
|
||||||
|
|
||||||
|
parser.add_argument('--wait',
|
||||||
|
type=int,
|
||||||
|
default=None,
|
||||||
|
nargs='?',
|
||||||
|
const=sys.maxsize,
|
||||||
|
help='Wait until template is ACTIVE or in ERROR'
|
||||||
|
'default is to wait forever '
|
||||||
|
'else number of seconds'
|
||||||
|
)
|
||||||
|
|
||||||
return parser
|
return parser
|
||||||
|
|
||||||
def take_action(self, parsed_args):
|
def take_action(self, parsed_args):
|
||||||
@ -135,10 +147,16 @@ class TemplateAdd(lister.Lister):
|
|||||||
template_type = parsed_args.type
|
template_type = parsed_args.type
|
||||||
cli_param_list = parsed_args.params
|
cli_param_list = parsed_args.params
|
||||||
params = _parse_template_params(cli_param_list)
|
params = _parse_template_params(cli_param_list)
|
||||||
|
wait = parsed_args.wait
|
||||||
|
|
||||||
templates = utils.get_client(self).template.add(
|
templates = utils.get_client(self).template.add(
|
||||||
path=path, template_type=template_type, params=params)
|
path=path, template_type=template_type, params=params)
|
||||||
|
|
||||||
|
if wait:
|
||||||
|
utils.wait_for_action_to_end(wait,
|
||||||
|
self._check_finished_loading,
|
||||||
|
templates=templates)
|
||||||
|
|
||||||
return utils.list2cols_with_rename(
|
return utils.list2cols_with_rename(
|
||||||
(
|
(
|
||||||
('UUID', 'uuid'),
|
('UUID', 'uuid'),
|
||||||
@ -149,6 +167,38 @@ class TemplateAdd(lister.Lister):
|
|||||||
('Type', 'type'),
|
('Type', 'type'),
|
||||||
), templates)
|
), templates)
|
||||||
|
|
||||||
|
def _check_finished_loading(self, templates):
|
||||||
|
if all(
|
||||||
|
(
|
||||||
|
template['status'] == 'ERROR'
|
||||||
|
for template in templates
|
||||||
|
)
|
||||||
|
):
|
||||||
|
return True
|
||||||
|
|
||||||
|
try:
|
||||||
|
api_templates = utils.get_client(self).template.list()
|
||||||
|
self._update_templates_status(api_templates, templates)
|
||||||
|
if any(
|
||||||
|
(
|
||||||
|
template['status'] == 'LOADING'
|
||||||
|
for template in templates
|
||||||
|
)
|
||||||
|
):
|
||||||
|
return False
|
||||||
|
return True
|
||||||
|
except Exception:
|
||||||
|
return True
|
||||||
|
|
||||||
|
@staticmethod
|
||||||
|
def _update_templates_status(api_templates, templates):
|
||||||
|
for template in templates:
|
||||||
|
uuid = template.get('uuid')
|
||||||
|
if uuid:
|
||||||
|
api_template = find_template_with_uuid(uuid, api_templates)
|
||||||
|
if api_template:
|
||||||
|
template['status'] = api_template['status']
|
||||||
|
|
||||||
|
|
||||||
class TemplateDelete(command.Command):
|
class TemplateDelete(command.Command):
|
||||||
"""Delete a template"""
|
"""Delete a template"""
|
||||||
@ -158,6 +208,14 @@ class TemplateDelete(command.Command):
|
|||||||
parser.add_argument('id',
|
parser.add_argument('id',
|
||||||
help='<ID or Name> of a template',
|
help='<ID or Name> of a template',
|
||||||
nargs='+')
|
nargs='+')
|
||||||
|
parser.add_argument('--wait',
|
||||||
|
type=int,
|
||||||
|
default=None,
|
||||||
|
nargs='?',
|
||||||
|
const=sys.maxsize,
|
||||||
|
help='Wait until template is DELETED or in ERROR'
|
||||||
|
'default is to wait forever else number of seconds'
|
||||||
|
)
|
||||||
return parser
|
return parser
|
||||||
|
|
||||||
@property
|
@property
|
||||||
@ -165,5 +223,20 @@ class TemplateDelete(command.Command):
|
|||||||
return 'json'
|
return 'json'
|
||||||
|
|
||||||
def take_action(self, parsed_args):
|
def take_action(self, parsed_args):
|
||||||
_id = parsed_args.id
|
ids = parsed_args.id
|
||||||
utils.get_client(self).template.delete(_id=_id)
|
wait = parsed_args.wait
|
||||||
|
utils.get_client(self).template.delete(ids=ids)
|
||||||
|
if wait:
|
||||||
|
utils.wait_for_action_to_end(wait,
|
||||||
|
self._check_deleted,
|
||||||
|
ids=ids)
|
||||||
|
|
||||||
|
def _check_deleted(self, ids):
|
||||||
|
for _id in ids:
|
||||||
|
try:
|
||||||
|
utils.get_client(self).template.show(_id)
|
||||||
|
except Exception: # if deleted we get exception
|
||||||
|
pass
|
||||||
|
else:
|
||||||
|
return False
|
||||||
|
return True
|
||||||
|
@ -56,9 +56,9 @@ class Template(object):
|
|||||||
params=params)
|
params=params)
|
||||||
return self.api.put(self.url, json=api_params).json()
|
return self.api.put(self.url, json=api_params).json()
|
||||||
|
|
||||||
def delete(self, _id):
|
def delete(self, ids):
|
||||||
"""Delete existing"""
|
"""Delete existing"""
|
||||||
params = dict(id=_id)
|
params = dict(id=ids)
|
||||||
return self.api.delete(self.url, json=params).json()
|
return self.api.delete(self.url, json=params).json()
|
||||||
|
|
||||||
def validate(self, path=None, template_type=None,
|
def validate(self, path=None, template_type=None,
|
||||||
@ -115,7 +115,7 @@ class Template(object):
|
|||||||
return yaml_utils.load(yaml_content)
|
return yaml_utils.load(yaml_content)
|
||||||
except ValueError as e:
|
except ValueError as e:
|
||||||
message = 'Could not load template: %s. Reason: %s' \
|
message = 'Could not load template: %s. Reason: %s' \
|
||||||
% (yaml_content, e.message)
|
% (yaml_content, e)
|
||||||
raise exc.CommandError(message)
|
raise exc.CommandError(message)
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
|
Loading…
x
Reference in New Issue
Block a user