d12ef71f9f
Refactor orchestrator to break large monolithic functions into small functions per action. - Update orchestrator to match new statemgmt API - Pull most code out of __init__.py files - Create action classes for Orchestrator actions - Create action classes for Driver actions - Orchestrator consumes tasks from database queue - Additional encapsulation of task functionality into Task class - Create shared integration test fixtures - Fix Sphinx entrypoint so package install works - Disable bootdata API until BootAction implementation - Bring codebase into PEP8 compliance - Update documentation reflect code changes - Mark SQL #nosec for bandit Change-Id: Id9a7bdedcdd5bbf07aeabbdb52db0f0b71f1e4a4
108 lines
3.4 KiB
Python
108 lines
3.4 KiB
Python
# Copyright 2017 AT&T Intellectual Property. All other rights reserved.
|
|
#
|
|
# 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.
|
|
"""Contains commands related to tasks against designs."""
|
|
import click
|
|
import json
|
|
|
|
from drydock_provisioner.cli.task.actions import TaskList
|
|
from drydock_provisioner.cli.task.actions import TaskShow
|
|
from drydock_provisioner.cli.task.actions import TaskCreate
|
|
|
|
|
|
@click.group()
|
|
def task():
|
|
"""Drydock task commands."""
|
|
|
|
|
|
@task.command(name='create')
|
|
@click.option(
|
|
'--design-ref', '-d', help='The design reference for this action')
|
|
@click.option('--action', '-a', help='The action to perform')
|
|
@click.option(
|
|
'--node-names',
|
|
'-n',
|
|
help='The nodes targeted by this action, comma separated')
|
|
@click.option(
|
|
'--rack-names',
|
|
'-r',
|
|
help='The racks targeted by this action, comma separated')
|
|
@click.option(
|
|
'--node-tags',
|
|
'-t',
|
|
help='The nodes by tag name targeted by this action, comma separated')
|
|
@click.option(
|
|
'--block/--no-block',
|
|
'-b',
|
|
help='The CLI will wait until the created completes before exitting',
|
|
default=False)
|
|
@click.option(
|
|
'--poll-interval',
|
|
help='Polling interval to check task status in blocking mode.',
|
|
default=15)
|
|
@click.pass_context
|
|
def task_create(ctx,
|
|
design_ref=None,
|
|
action=None,
|
|
node_names=None,
|
|
rack_names=None,
|
|
node_tags=None,
|
|
block=False,
|
|
poll_interval=15):
|
|
"""Create a task."""
|
|
if not design_ref:
|
|
ctx.fail(
|
|
'Error: Design reference must be specified using --design-ref')
|
|
|
|
if not action:
|
|
ctx.fail('Error: Action must be specified using --action')
|
|
|
|
click.echo(
|
|
json.dumps(
|
|
TaskCreate(
|
|
ctx.obj['CLIENT'],
|
|
design_ref=design_ref,
|
|
action_name=action,
|
|
node_names=[x.strip() for x in node_names.split(',')]
|
|
if node_names else [],
|
|
rack_names=[x.strip() for x in rack_names.split(',')]
|
|
if rack_names else [],
|
|
node_tags=[x.strip() for x in node_tags.split(',')]
|
|
if node_tags else [],
|
|
block=block,
|
|
poll_interval=poll_interval).invoke()))
|
|
|
|
|
|
@task.command(name='list')
|
|
@click.pass_context
|
|
def task_list(ctx):
|
|
"""List tasks."""
|
|
click.echo(json.dumps(TaskList(ctx.obj['CLIENT']).invoke()))
|
|
|
|
|
|
@task.command(name='show')
|
|
@click.option('--task-id', '-t', help='The required task id')
|
|
@click.option(
|
|
'--block/--no-block',
|
|
'-b',
|
|
help='The CLI will wait until the created completes before exitting',
|
|
default=False)
|
|
@click.pass_context
|
|
def task_show(ctx, task_id=None, block=False):
|
|
"""show a task's details."""
|
|
if not task_id:
|
|
ctx.fail('The task id must be specified by --task-id')
|
|
|
|
click.echo(
|
|
json.dumps(TaskShow(ctx.obj['CLIENT'], task_id=task_id).invoke()))
|