c5d58150dd
Validate that the upgrade is working by running the ping test when the upgrade role is finished and successful Change-Id: Ie2de9ae28dadb8bf1a1af28e7650164f92aba945
19 lines
450 B
YAML
19 lines
450 B
YAML
---
|
|
# Upgrade Undercloud and Overcloud on top of a quickstart Baremetal deployment
|
|
- include: baremetal-full-deploy.yml
|
|
|
|
- name: Upgrade Tripleo
|
|
hosts: undercloud
|
|
gather_facts: no
|
|
roles:
|
|
- { role: overcloud-upgrade, deployment_type: baremetal }
|
|
|
|
# Validate the deployment
|
|
- name: validate the overcloud
|
|
hosts: undercloud
|
|
tags:
|
|
- overcloud-validate
|
|
gather_facts: no
|
|
roles:
|
|
- { role: validate-simple, when: test_ping|bool }
|