9cc04d25f3
It was added to "openstack tripleo upgrade" but wasn't working for the undercloud, so adding it and we will use it when upgrading the undercloud without prompt. Change-Id: Ib034765639667f49d4bfd92a2186ff5f022a938d
118 lines
4.1 KiB
Python
118 lines
4.1 KiB
Python
# Copyright 2015 Red Hat, 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.
|
|
#
|
|
|
|
"""Plugin action implementation"""
|
|
|
|
import argparse
|
|
import logging
|
|
import subprocess
|
|
|
|
from openstackclient.i18n import _
|
|
|
|
from tripleoclient import command
|
|
from tripleoclient import utils
|
|
from tripleoclient.v1 import undercloud_config
|
|
|
|
|
|
class InstallUndercloud(command.Command):
|
|
"""Install and setup the undercloud"""
|
|
|
|
auth_required = False
|
|
log = logging.getLogger(__name__ + ".InstallUndercloud")
|
|
|
|
def get_parser(self, prog_name):
|
|
parser = argparse.ArgumentParser(
|
|
description=self.get_description(),
|
|
prog=prog_name,
|
|
add_help=False
|
|
)
|
|
parser.add_argument(
|
|
'--use-heat',
|
|
dest='use_heat',
|
|
action='store_true',
|
|
default=False,
|
|
help=_("Perform undercloud deploy using heat"),
|
|
)
|
|
parser.add_argument(
|
|
'--no-validations',
|
|
dest='no_validations',
|
|
action='store_true',
|
|
default=False,
|
|
help=_("Do not perform undercloud configuration validations"),
|
|
)
|
|
parser.add_argument(
|
|
'--dry-run',
|
|
dest='dry_run',
|
|
action='store_true',
|
|
default=False,
|
|
help=_("Print the install command instead of running it"),
|
|
)
|
|
parser.add_argument('-y', '--yes', default=False,
|
|
action='store_true',
|
|
help=_("Skip yes/no prompt (assume yes)."))
|
|
return parser
|
|
|
|
def take_action(self, parsed_args):
|
|
self.log.debug("take_action(%s)" % parsed_args)
|
|
|
|
utils.ensure_run_as_normal_user()
|
|
if parsed_args.use_heat:
|
|
no_validations = parsed_args.dry_run or parsed_args.no_validations
|
|
cmd = undercloud_config.\
|
|
prepare_undercloud_deploy(
|
|
no_validations=no_validations,
|
|
verbose_level=self.app_args.verbose_level)
|
|
else:
|
|
self.log.warning(_('Non-containerized undercloud deployment is '
|
|
'deprecated in Rocky cycle.'))
|
|
cmd = ["instack-install-undercloud"]
|
|
if parsed_args.dry_run:
|
|
print(' '.join(cmd))
|
|
else:
|
|
subprocess.check_call(cmd)
|
|
|
|
|
|
class UpgradeUndercloud(InstallUndercloud):
|
|
"""Upgrade undercloud"""
|
|
|
|
auth_required = False
|
|
log = logging.getLogger(__name__ + ".UpgradeUndercloud")
|
|
|
|
def take_action(self, parsed_args):
|
|
self.log.debug("take action(%s)" % parsed_args)
|
|
|
|
utils.ensure_run_as_normal_user()
|
|
if parsed_args.use_heat:
|
|
cmd = undercloud_config.\
|
|
prepare_undercloud_deploy(
|
|
upgrade=True,
|
|
yes=parsed_args.yes,
|
|
no_validations=parsed_args.
|
|
no_validations,
|
|
verbose_level=self.app_args.verbose_level)
|
|
print("Running: %s" % ' '.join(cmd))
|
|
subprocess.check_call(cmd)
|
|
else:
|
|
self.log.warning(_('Non-containerized undercloud deployment is '
|
|
'deprecated in Rocky cycle.'))
|
|
subprocess.check_call(['sudo', 'yum', 'update', '-y',
|
|
'instack-undercloud'])
|
|
subprocess.check_call("instack-pre-upgrade-undercloud")
|
|
subprocess.check_call("instack-upgrade-undercloud")
|
|
# restart nova-api
|
|
# https://bugzilla.redhat.com/show_bug.cgi?id=1315467
|
|
subprocess.check_call(['sudo', 'systemctl', 'restart',
|
|
'openstack-nova-api'])
|