Red Hat Bugzilla – 1522760 – OSP11 -> OSP12 upgrade: some of the OSPd UI validations do not take into consideration the migration of services into containers
Description of problem:
OSP11 -> OSP12 upgrade: some of the OSPd UI validations do not take into consideration the migration of services into containers.
The following validations either check configuration files or run commands on the host instead of running them inside containers:
https://github.com/openstack/tripleo-validations/blob/stable/pike/validations/haproxy.yaml
=> Checks /etc/haproxy/haproxy.cfg on the host; after upgrade this file is not used anymore because the services runs inside the container
https://github.com/openstack/tripleo-validations/blob/stable/pike/validations/no-op-firewall-nova-driver.yaml
=> Checks /etc/nova/nova.conf on the host; after upgrade this file is not used anymore because the services runs inside the container
https://github.com/openstack/tripleo-validations/blob/stable/pike/validations/rabbitmq-limits.yaml
=> Runs rabbitmqctl eval command on the host; after upgrade rabbitmq runs inside a container so this command should be run inside the container
Version-Release number of selected component (if applicable):
openstack-tripleo-validations-7.4.2-1.el7ost.noarch
How reproducible:
100$
Steps to Reproduce:
1. Deploy OSP11 via UI
2. Upgrade to OSP12
3. Run overcloud validations
Actual results:
Some of the validations do not report the correct status and some fail because they do not take into consideration the migration into containers.
Expected results:
Validations should be adapted to the containerized setup.
Additional info: