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
398 B
YAML
19 lines
398 B
YAML
---
|
|
# Upgrade Undercloud and Overcloud on top of a quickstart deployment
|
|
- include: quickstart-extras.yml
|
|
|
|
- name: Upgrade Tripleo
|
|
hosts: undercloud
|
|
gather_facts: no
|
|
roles:
|
|
- overcloud-upgrade
|
|
|
|
# Validate the deployment
|
|
- name: validate the overcloud
|
|
hosts: undercloud
|
|
tags:
|
|
- overcloud-validate
|
|
gather_facts: no
|
|
roles:
|
|
- { role: validate-simple, when: test_ping|bool }
|