[validation] ignore openstack-neutron-dhcp-agent as it is not restarting

The openstack-neutron-dhcp-agent comntainer is not restrting by design see:
https://bugzilla.redhat.com/show_bug.cgi?id=1639193

Change-Id: Iedfce29a11b440f14b3880195ecaa0f0181fcb25
This commit is contained in:
Raviv Bar-Tal 2018-11-19 16:24:25 +02:00 committed by Raviv
parent d8d12b926d
commit ba36d95c38
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ for _ip in $( openstack server list -f value -c Networks | awk -F '=' '{ print $
echo "================================================================================"
CONTAINERS=$( ssh -q -o StrictHostKeyChecking=no \
{% if overcloud_ssh_user != '' %}{{overcloud_ssh_user}}{% else %}heat-admin{% endif %}@${_ip} \
"sudo docker ps 2>&1 | grep -v -e pcmk -e ID -e qrouter | awk '{ print \$2 }'" )
"sudo docker ps 2>&1 | grep -v -e pcmk -e ID -e qrouter -e openstack-neutron-dhcp-agent | awk '{ print \$2 }'" )
for _container in ${CONTAINERS} ; do
# non pcs managed containers
assert_image_in_file {{ working_dir}}/{{ container_registry_file }} ${_container}