08360e4667
Before we update the heat stack for the ffwd-upgrade prepare we can use this to run any required commands on the overcloud. The current use case is removal of the /usr/libexec/os-apply-config/templates/etc/os-net-config/config.json Otherwise after the upgrade prepare is executed, overcloud nodes will have empty config.json for os-net-config (also discussed [0]) The current implementation of .deployment.v1.deploy_on_servers assumes all servers are managed by nova. This is OK for N..Q ffu but we will need to revisit in future, see [1] for more info. [0]: https://bugzilla.redhat.com/show_bug.cgi?id=1561255 [1]: https://bugs.launchpad.net/tripleo/+bug/1770356 Related-Bug: 1758161 Related: tripleo-common Ic138c4925c5c96d1cf718af7ae59bcf5f0ba96dc Change-Id: I77fdc9deab97c785725f09b8529c512950753f86
193 lines
6.8 KiB
Python
193 lines
6.8 KiB
Python
# 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.
|
|
from __future__ import print_function
|
|
|
|
import pprint
|
|
import time
|
|
|
|
|
|
from heatclient.common import event_utils
|
|
from openstackclient import shell
|
|
from tripleoclient import exceptions
|
|
from tripleoclient import utils
|
|
|
|
from tripleoclient.workflows import base
|
|
|
|
|
|
def update(clients, **workflow_input):
|
|
workflow_client = clients.workflow_engine
|
|
tripleoclients = clients.tripleoclient
|
|
plan_name = workflow_input['container']
|
|
|
|
with tripleoclients.messaging_websocket() as ws:
|
|
execution = base.start_workflow(
|
|
workflow_client,
|
|
'tripleo.package_update.v1.package_update_plan',
|
|
workflow_input=workflow_input
|
|
)
|
|
|
|
for payload in base.wait_for_messages(workflow_client, ws, execution):
|
|
assert payload['status'] == "SUCCESS", pprint.pformat(payload)
|
|
|
|
orchestration_client = clients.orchestration
|
|
|
|
events = event_utils.get_events(orchestration_client,
|
|
stack_id=plan_name,
|
|
event_args={'sort_dir': 'desc',
|
|
'limit': 1})
|
|
marker = events[0].id if events else None
|
|
|
|
time.sleep(10)
|
|
create_result = utils.wait_for_stack_ready(
|
|
orchestration_client, plan_name, marker, 'UPDATE', 1)
|
|
if not create_result:
|
|
shell.OpenStackShell().run(["stack", "failures", "list", plan_name])
|
|
raise exceptions.DeploymentError("Heat Stack update failed.")
|
|
|
|
|
|
def get_config(clients, **workflow_input):
|
|
workflow_client = clients.workflow_engine
|
|
tripleoclients = clients.tripleoclient
|
|
|
|
with tripleoclients.messaging_websocket() as ws:
|
|
execution = base.start_workflow(
|
|
workflow_client,
|
|
'tripleo.package_update.v1.get_config',
|
|
workflow_input=workflow_input
|
|
)
|
|
|
|
for payload in base.wait_for_messages(workflow_client, ws, execution):
|
|
assert payload['status'] == "SUCCESS", pprint.pformat(payload)
|
|
|
|
if payload['status'] == 'SUCCESS':
|
|
print('Success')
|
|
else:
|
|
raise RuntimeError('Minor update failed with: {}'.format(payload))
|
|
|
|
|
|
def update_ansible(clients, **workflow_input):
|
|
workflow_client = clients.workflow_engine
|
|
tripleoclients = clients.tripleoclient
|
|
ansible_queue = workflow_input['ansible_queue_name']
|
|
|
|
with tripleoclients.messaging_websocket(ansible_queue) as update_ws:
|
|
execution = base.start_workflow(
|
|
workflow_client,
|
|
'tripleo.package_update.v1.update_nodes',
|
|
workflow_input=workflow_input
|
|
)
|
|
|
|
for payload in base.wait_for_messages(workflow_client,
|
|
update_ws,
|
|
execution):
|
|
if payload.get('message'):
|
|
pprint.pprint(payload['message'].splitlines())
|
|
|
|
if payload['status'] == 'SUCCESS':
|
|
print('Success')
|
|
else:
|
|
raise RuntimeError('Update failed with: {}'.format(payload))
|
|
|
|
|
|
def update_converge_nodes(clients, **workflow_input):
|
|
workflow_client = clients.workflow_engine
|
|
tripleoclients = clients.tripleoclient
|
|
|
|
with tripleoclients.messaging_websocket(
|
|
workflow_input['queue_name']) as ws:
|
|
execution = base.start_workflow(
|
|
workflow_client,
|
|
'tripleo.package_update.v1.update_converge_plan',
|
|
workflow_input=workflow_input
|
|
)
|
|
|
|
for payload in base.wait_for_messages(workflow_client, ws, execution):
|
|
assert payload['status'] == "SUCCESS", pprint.pformat(payload)
|
|
|
|
if payload['status'] == 'SUCCESS':
|
|
print('Success')
|
|
else:
|
|
raise RuntimeError('Update converge failed: {}'.format(payload))
|
|
|
|
|
|
def converge_nodes(clients, **workflow_input):
|
|
workflow_client = clients.workflow_engine
|
|
tripleoclients = clients.tripleoclient
|
|
plan_name = workflow_input['container']
|
|
|
|
with tripleoclients.messaging_websocket() as ws:
|
|
execution = base.start_workflow(
|
|
workflow_client,
|
|
'tripleo.package_update.v1.converge_upgrade_plan',
|
|
workflow_input=workflow_input
|
|
)
|
|
|
|
for payload in base.wait_for_messages(workflow_client, ws, execution):
|
|
assert payload['status'] == "SUCCESS", pprint.pformat(payload)
|
|
|
|
orchestration_client = clients.orchestration
|
|
|
|
events = event_utils.get_events(orchestration_client,
|
|
stack_id=plan_name,
|
|
event_args={'sort_dir': 'desc',
|
|
'limit': 1})
|
|
marker = events[0].id if events else None
|
|
|
|
time.sleep(10)
|
|
create_result = utils.wait_for_stack_ready(
|
|
orchestration_client, plan_name, marker, 'UPDATE', 1)
|
|
if not create_result:
|
|
shell.OpenStackShell().run(["stack", "failures", "list", plan_name])
|
|
raise exceptions.DeploymentError("Heat Stack update failed.")
|
|
|
|
|
|
def ffwd_converge_nodes(clients, **workflow_input):
|
|
workflow_client = clients.workflow_engine
|
|
tripleoclients = clients.tripleoclient
|
|
|
|
with tripleoclients.messaging_websocket(
|
|
workflow_input['queue_name']) as ws:
|
|
execution = base.start_workflow(
|
|
workflow_client,
|
|
'tripleo.package_update.v1.ffwd_upgrade_converge_plan',
|
|
workflow_input=workflow_input
|
|
)
|
|
|
|
for payload in base.wait_for_messages(workflow_client, ws, execution):
|
|
assert payload['status'] == "SUCCESS", pprint.pformat(payload)
|
|
|
|
if payload['status'] == 'SUCCESS':
|
|
print('Success')
|
|
else:
|
|
raise RuntimeError('ffwd upgrade converge failed: {}'.format(payload))
|
|
|
|
|
|
def run_on_nodes(clients, **workflow_input):
|
|
workflow_client = clients.workflow_engine
|
|
tripleoclients = clients.tripleoclient
|
|
|
|
with tripleoclients.messaging_websocket(
|
|
workflow_input['queue_name']) as ws:
|
|
execution = base.start_workflow(
|
|
workflow_client,
|
|
'tripleo.deployment.v1.deploy_on_servers',
|
|
workflow_input=workflow_input
|
|
)
|
|
|
|
for payload in base.wait_for_messages(workflow_client, ws, execution):
|
|
assert payload['status'] == "SUCCESS", pprint.pformat(payload)
|
|
|
|
if payload['status'] == "SUCCESS":
|
|
print('Success')
|
|
else:
|
|
raise RuntimeError('run on nodes failed: {}'.format(payload))
|