2016-08-02 17:43:10 +01:00
|
|
|
# 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.
|
|
|
|
|
|
|
|
import json
|
|
|
|
import logging
|
|
|
|
|
2016-08-03 15:02:18 +00:00
|
|
|
from cliff import command
|
2016-08-02 17:43:10 +01:00
|
|
|
from cliff import lister
|
2016-08-03 15:02:18 +00:00
|
|
|
from openstackclient.i18n import _
|
2016-08-02 17:43:10 +01:00
|
|
|
|
|
|
|
|
|
|
|
class ListPlans(lister.Lister):
|
2016-08-03 15:02:18 +00:00
|
|
|
"""List overcloud deployment plans."""
|
2016-08-02 17:43:10 +01:00
|
|
|
|
|
|
|
log = logging.getLogger(__name__ + ".ListPlans")
|
|
|
|
|
|
|
|
def take_action(self, parsed_args):
|
|
|
|
self.log.debug("take_action(%s)" % parsed_args)
|
|
|
|
|
|
|
|
workflow_client = self.app.client_manager.workflow_engine
|
|
|
|
execution = workflow_client.action_executions.create(
|
|
|
|
'tripleo.list_plans')
|
|
|
|
|
|
|
|
try:
|
|
|
|
json_results = json.loads(execution.output)['result']
|
|
|
|
except Exception:
|
|
|
|
self.log.exception("Error parsing JSON %s", execution.output)
|
|
|
|
json_results = []
|
|
|
|
|
|
|
|
result = []
|
|
|
|
for r in json_results:
|
|
|
|
result.append((r,))
|
|
|
|
|
|
|
|
return (("Plan Name",), result)
|
2016-08-03 15:02:18 +00:00
|
|
|
|
|
|
|
|
|
|
|
class DeletePlan(command.Command):
|
|
|
|
"""Delete an overcloud deployment plan.
|
|
|
|
|
|
|
|
The plan will not be deleted if a stack exists with the same name.
|
|
|
|
"""
|
|
|
|
|
|
|
|
log = logging.getLogger(__name__ + ".DeletePlan")
|
|
|
|
|
|
|
|
def get_parser(self, prog_name):
|
|
|
|
parser = super(DeletePlan, self).get_parser(prog_name)
|
|
|
|
parser.add_argument('plans', metavar='<name>', nargs="+",
|
|
|
|
help=_('Name of the plan(s) to delete'))
|
|
|
|
return parser
|
|
|
|
|
|
|
|
def take_action(self, parsed_args):
|
|
|
|
self.log.debug("take_action(%s)" % parsed_args)
|
|
|
|
|
|
|
|
workflow_client = self.app.client_manager.workflow_engine
|
|
|
|
|
|
|
|
for plan in parsed_args.plans:
|
|
|
|
print("Deleting plan %s..." % plan)
|
|
|
|
execution = workflow_client.action_executions.create(
|
|
|
|
'tripleo.delete_plan', input={'container': plan})
|
|
|
|
|
|
|
|
try:
|
|
|
|
json_results = json.loads(execution.output)['result']
|
|
|
|
if json_results is not None:
|
|
|
|
print(json_results)
|
|
|
|
except Exception:
|
|
|
|
self.log.exception(
|
|
|
|
"Error parsing action result %s", execution.output)
|