eaaf2e8bc5
This new option allows to call the Mistral workflow to run an Undercloud full backup. Usage: openstack undercloud backup [--add-path ADD_FILES_TO_BACKUP] The --add-path allows to add additional files or folders to the Undercloud backup, for example: openstack undercloud backup --add-path /etc/hosts \ --add-path /var/log/ Depends-on: Iebd67568d5e72967e694b88fc8c73361543929a1 Change-Id: Ief10f5313244d2848b6de604e0493a51db1ed30f Related bp undercloud-backup-restore
36 lines
1.2 KiB
Python
36 lines
1.2 KiB
Python
# Copyright 2018 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 pprint
|
|
|
|
from tripleoclient.workflows import base
|
|
|
|
|
|
def backup(clients, workflow_input):
|
|
|
|
workflow_client = clients.workflow_engine
|
|
tripleoclients = clients.tripleoclient
|
|
|
|
with tripleoclients.messaging_websocket() as ws:
|
|
execution = base.start_workflow(
|
|
workflow_client,
|
|
'tripleo.undercloud_backup.v1.backup',
|
|
workflow_input=workflow_input
|
|
)
|
|
|
|
for payload in base.wait_for_messages(workflow_client, ws, execution):
|
|
if 'message' in payload:
|
|
assert payload['status'] == "SUCCESS", pprint.pformat(payload)
|
|
print('Undercloud Backup succeed')
|