846836a196
This will allow administrators to perform a backup of the undercloud or overcloud from the existing backup and restore role which is included in the tripleo-anisble project. Depends-on: https://review.opendev.org/720087 Change-Id: If25b71ae4d12208875d0fbcd9e16188a6f018f99
176 lines
6.2 KiB
Python
176 lines
6.2 KiB
Python
# Copyright 2020 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.
|
|
#
|
|
|
|
import argparse
|
|
import logging
|
|
|
|
from osc_lib.command import command
|
|
from osc_lib.i18n import _
|
|
|
|
from tripleoclient import constants
|
|
from tripleoclient import utils
|
|
|
|
LOG = logging.getLogger(__name__ + ".BackupUndercloud")
|
|
|
|
|
|
class BackupUndercloud(command.Command):
|
|
"""Backup the undercloud"""
|
|
|
|
def get_parser(self, prog_name):
|
|
parser = argparse.ArgumentParser(
|
|
description=self.get_description(),
|
|
prog=prog_name,
|
|
add_help=False
|
|
)
|
|
|
|
# New flags for tripleo-ansible backup and restore role.
|
|
parser.add_argument(
|
|
'--init',
|
|
default=False,
|
|
action='store_true',
|
|
help=_("Initialize enviornment for backup,"
|
|
"which will check for package install"
|
|
"status and configured ReaR.")
|
|
)
|
|
|
|
parser.add_argument(
|
|
'--inventory',
|
|
action='store',
|
|
default='/home/stack/tripleo-inventory.yaml',
|
|
help=_("Tripleo inventory file generated with"
|
|
"tripleo-ansible-inventory command.")
|
|
)
|
|
|
|
# Parameter to choose the files to backup
|
|
parser.add_argument(
|
|
'--add-path',
|
|
action='append',
|
|
default=['/home/stack/'],
|
|
help=_("Add additional files to backup. "
|
|
"Defaults to: /home/stack/ "
|
|
"i.e. --add-path /this/is/a/folder/ "
|
|
" --add-path /this/is/a/texfile.txt")
|
|
)
|
|
parser.add_argument(
|
|
"--exclude-path",
|
|
default=[],
|
|
action="append",
|
|
help=_("Exclude path when performing the Undercloud Backup, "
|
|
"this option can be specified multiple times. "
|
|
"Defaults to: none "
|
|
"i.e. --exclude-path /this/is/a/folder/ "
|
|
" --exclude-path /this/is/a/texfile.txt")
|
|
)
|
|
parser.add_argument(
|
|
'--save-swift',
|
|
default=False,
|
|
action='store_true',
|
|
help=_("Save backup to swift. "
|
|
"Defaults to: False "
|
|
"Special attention should be taken that "
|
|
"Swift itself is backed up if you call this multiple times "
|
|
"the backup size will grow exponentially")
|
|
)
|
|
|
|
return parser
|
|
|
|
def _run_backup_undercloud(self, parsed_args):
|
|
|
|
if parsed_args.init is False:
|
|
playbook = 'cli-undercloud-backup.yaml'
|
|
skip_tags = None
|
|
elif parsed_args.init is True:
|
|
playbook = 'prepare-undercloud-backup.yaml'
|
|
skip_tags = 'bar_create_recover_image'
|
|
|
|
self._run_ansible_playbook(
|
|
playbook=playbook,
|
|
inventory=parsed_args.inventory,
|
|
skip_tags=skip_tags,
|
|
extra_vars=None
|
|
)
|
|
|
|
def _legacy_backup_undercloud(self, parsed_args):
|
|
"""Legacy backup undercloud.
|
|
|
|
This will allow for easier removal once the functionality
|
|
is no longer needed.
|
|
"""
|
|
|
|
merge_paths = sorted(list(set(parsed_args.add_path)))
|
|
for exc in parsed_args.exclude_path:
|
|
if exc in merge_paths:
|
|
merge_paths.remove(exc)
|
|
|
|
files_to_backup = ','.join(merge_paths)
|
|
|
|
# Define the backup sources_path (files to backup).
|
|
# This is a comma separated string.
|
|
# I.e. "/this/is/a/folder/,/this/is/a/texfile.txt"
|
|
extra_vars = {"sources_path": files_to_backup}
|
|
if parsed_args.save_swift:
|
|
extra_vars.update({"save_swift": True})
|
|
|
|
LOG.debug(_('Launch the Undercloud Backup'))
|
|
self._run_ansible_playbook(
|
|
playbook='cli-undercloud-backup-legacy.yaml',
|
|
inventory='localhost, ',
|
|
skip_tags=None,
|
|
extra_vars=extra_vars
|
|
)
|
|
|
|
def _run_ansible_playbook(self,
|
|
playbook,
|
|
inventory,
|
|
skip_tags,
|
|
extra_vars):
|
|
"""Run ansible playbook"""
|
|
|
|
with utils.TempDirs() as tmp:
|
|
utils.run_ansible_playbook(
|
|
playbook=playbook,
|
|
inventory=inventory,
|
|
workdir=tmp,
|
|
playbook_dir=constants.ANSIBLE_TRIPLEO_PLAYBOOKS,
|
|
skip_tags=skip_tags,
|
|
verbosity=utils.playbook_verbosity(self=self),
|
|
extra_vars=extra_vars
|
|
)
|
|
|
|
def take_action(self, parsed_args):
|
|
|
|
if len(parsed_args.add_path) > 1 or parsed_args.save_swift:
|
|
|
|
LOG.warning("The following flags will be deprecated:"
|
|
"[--add-path, --exclude-path, --save-swift]")
|
|
|
|
self._legacy_backup_undercloud(parsed_args)
|
|
|
|
else:
|
|
self._run_backup_undercloud(parsed_args)
|
|
|
|
print(
|
|
'\n'
|
|
' #############################################################\n'
|
|
' # Disclaimer #\n'
|
|
' # Backup verification is the End Users responsibility #\n'
|
|
' # Please verify backup integrity before any possible #\n'
|
|
' # disruptive actions against the Undercloud. The resulting #\n'
|
|
' # backup file path will be shown on a successful execution. #\n'
|
|
' # #\n'
|
|
' # .-Stay safe and avoid future issues-. #\n'
|
|
' #############################################################\n'
|
|
)
|