Fixing the image tag for ironic

Fixing the image tag for ironic, so it will use default image_tag
with only exception for Branch 2 and 3, where we have to use
3.0.0-beta.1 tag for ironic.

Change-Id: Ic8ba882391ce79e24f69183a371ef5fe78d9cfb5
This commit is contained in:
Serguei Bezverkhi 2017-06-02 07:09:38 -04:00
parent 011f0c76a2
commit 6cc7f149e1
1 changed files with 5 additions and 2 deletions

View File

@ -27,8 +27,11 @@ function common_workflow_config {
echo " all:"
echo " port_external: true"
echo " ironic:"
echo " all:"
echo " image_tag: 3.0.3-beta.1"
# Ironic should use default image tags with exception of Branch 2 and 3
if [ "x$branch" == "x2" -o "x$branch" == "x3" ]; then
echo " all:"
echo " image_tag: 3.0.3-beta.1"
fi
echo " conductor:"
echo " all:"
echo " initramfs_url: http://tarballs.openstack.org/ironic-python-agent/tinyipa/files/tinyipa-stable-newton.gz"