Revert "Set container build hash based on dlrn md5 checksum"

This reverts commit 93f39c64f2.

Depends-On: https://review.opendev.org/#/c/710441/

Change-Id: Ibe224ad4ba63c0caea37fbded9aa2c37bcf7a9d7
This commit is contained in:
wes hayutin 2020-03-04 19:14:52 +00:00 committed by Chandan Kumar (raukadah)
parent 9b2ad467b6
commit 49f4389bc3
1 changed files with 1 additions and 30 deletions

View File

@ -15,9 +15,7 @@
# get_build_command is passing the current hash
# plus the latest dlrn hash and I'm not sure why
# http://opendev.org/openstack/tripleo-ci/tree/roles/run-test/templates/oooq_common_functions.sh.j2#n155
- when:
- get_build_command is defined
- ansible_distribution_major_version is version(8, '<') or ansible_distribution == "RedHat"
- when: get_build_command is defined
block:
- name: execute build_command
shell: |
@ -33,33 +31,6 @@
tags:
- undercloud-install
- when:
- get_build_command is defined
- ansible_distribution_major_version is version(8, '>=')
- ansible_distribution == "CentOS"
block:
- name: Get md5 checksum for centos-8
shell: |
set -euo pipefail
dlrn_base={{ dlrn_baseurl }}
if [ -e /etc/ci/mirror_info.sh ]; then
source /etc/ci/mirror_info.sh
NODEPOOL_RDO_PROXY=${NODEPOOL_RDO_PROXY:-https://trunk.rdoproject.org}
dlrn_base=${dlrn_base/https:\/\/trunk.rdoproject.org/$NODEPOOL_RDO_PROXY}
fi
curl -s --fail --show-error ${dlrn_base}/{{ dlrn_hash_tag }}/delorean.repo.md5
register: build_command_output
retries: 5
tags:
- undercloud-install
- name: set container_build_id from get_build_command - md5
set_fact:
container_build_id: "{{ build_command_output.stdout }}"
cacheable: true
tags:
- undercloud-install
# docker_image_tag is set to the dlrn hash but uses the tag
# as a backup default
# "{{ dlrn_hash|default(dlrn_hash_tag) }}"