tripleo-quickstart/tests/validate-release-config.yml
Chandan Kumar (raukadah) b8b85b348d Added RedHat-8 release file
In order to speed up the work on RHEL-8, we need a release
file for RedHat-8 so that standalone jobs works.

Set distro_deps_repo_name: deps
Enable RHUI repos as it is disabled by default.
Use rhel-binary for container tag

Change-Id: I5eb91e39cf76c79af8704bf341d003e3a3a6b866
Signed-off-by: Chandan Kumar (raukadah) <chkumar@redhat.com>
2019-07-19 20:52:21 +05:30

17 lines
388 B
YAML

---
- hosts: localhost
connection: local
gather_facts: false
tasks:
- name: validate image urls
# TODO(ssbarnea): make the condition dynamic, like detecting rdo
when: validate_on is not defined
uri:
url: "{{ item }}"
method: HEAD
status_code: 200
with_items:
- "{{ ipa_image_url }}"
- "{{ overcloud_image_url }}"