Use centos8 built images

Configure images' URLs for CentOS 8 OVB jobs

Change-Id: I1a79d8f95109c2abd9e75dfcbed6342f4fc4397f
This commit is contained in:
Sagi Shnaidman 2020-03-04 16:24:54 +02:00
parent caa96846dd
commit bac1e35e2d
3 changed files with 18 additions and 6 deletions

View File

@ -15,14 +15,18 @@ workers_args: >-
-e {{ tripleo_root }}/tripleo-ci/test-environments/worker-config.yaml
-e {{ overcloud_templates_path }}/environments/debug.yaml
overcloud_image_url: >-
{% if ansible_distribution == 'RedHat' and ansible_distribution_major_version >= '8' -%}
{% if ansible_distribution == 'RedHat' and ansible_distribution_major_version|int >= 8 -%}
https://images.rdoproject.org:4433/rcm-guest/images/redhat8/{{ release }}/rdo_trunk/{{ dlrn_hash|default(dlrn_hash_tag) }}/overcloud-full.tar
{%- elif ansible_distribution_major_version|int >= 8-%}
https://images.rdoproject.org/centos8/{{ release }}/rdo_trunk/{{ dlrn_hash|default(dlrn_hash_tag) }}/overcloud-full.tar
{%- else -%}
http://images.rdoproject.org/{{ release }}/rdo_trunk/{{ dlrn_hash|default(dlrn_hash_tag) }}/overcloud-full.tar
{%- endif %}
ipa_image_url: >-
{% if ansible_distribution == 'RedHat' and ansible_distribution_major_version >= '8' -%}
{% if ansible_distribution == 'RedHat' and ansible_distribution_major_version|int >= 8 -%}
https://images.rdoproject.org:4433/rcm-guest/images/redhat8/{{ release }}/rdo_trunk/{{ dlrn_hash|default(dlrn_hash_tag) }}/ironic-python-agent.tar
{%- elif ansible_distribution_major_version|int >= 8 -%}
https://images.rdoproject.org/centos8/{{ release }}/rdo_trunk/{{ dlrn_hash|default(dlrn_hash_tag) }}/ironic-python-agent.tar
{%- else -%}
http://images.rdoproject.org/{{ release }}/rdo_trunk/{{ dlrn_hash|default(dlrn_hash_tag) }}/ironic-python-agent.tar
{%- endif %}

View File

@ -14,14 +14,18 @@ workers_args: >-
-e {{ tripleo_root }}/tripleo-ci/test-environments/worker-config.yaml
-e {{ overcloud_templates_path }}/environments/debug.yaml
overcloud_image_url: >-
{% if ansible_distribution == 'RedHat' and ansible_distribution_major_version >= '8' -%}
{% if ansible_distribution == 'RedHat' and ansible_distribution_major_version|int >= 8 -%}
https://images.rdoproject.org:4433/rcm-guest/images/redhat8/{{ release }}/rdo_trunk/{{ dlrn_hash|default(dlrn_hash_tag) }}/overcloud-full.tar
{%- elif ansible_distribution_major_version|int >= 8-%}
https://images.rdoproject.org/centos8/{{ release }}/rdo_trunk/{{ dlrn_hash|default(dlrn_hash_tag) }}/overcloud-full.tar
{%- else -%}
http://images.rdoproject.org/{{ release }}/rdo_trunk/{{ dlrn_hash|default(dlrn_hash_tag) }}/overcloud-full.tar
{%- endif %}
ipa_image_url: >-
{% if ansible_distribution == 'RedHat' and ansible_distribution_major_version >= '8' -%}
{% if ansible_distribution == 'RedHat' and ansible_distribution_major_version|int >= 8 -%}
https://images.rdoproject.org:4433/rcm-guest/images/redhat8/{{ release }}/rdo_trunk/{{ dlrn_hash|default(dlrn_hash_tag) }}/ironic-python-agent.tar
{%- elif ansible_distribution_major_version|int >= 8 -%}
https://images.rdoproject.org/centos8/{{ release }}/rdo_trunk/{{ dlrn_hash|default(dlrn_hash_tag) }}/ironic-python-agent.tar
{%- else -%}
http://images.rdoproject.org/{{ release }}/rdo_trunk/{{ dlrn_hash|default(dlrn_hash_tag) }}/ironic-python-agent.tar
{%- endif %}

View File

@ -57,14 +57,18 @@ floating_ip_cidr: >-
{%- endif %}
tempest_test_image_path: /opt/cache/files/cirros-0.3.5-x86_64-disk.img
overcloud_image_url: >-
{% if ansible_distribution == 'RedHat' and ansible_distribution_major_version >= '8' -%}
{% if ansible_distribution == 'RedHat' and ansible_distribution_major_version|int >= 8 -%}
https://images.rdoproject.org:4433/rcm-guest/images/redhat8/{{ release }}/rdo_trunk/{{ dlrn_hash|default(dlrn_hash_tag) }}/overcloud-full.tar
{%- elif ansible_distribution_major_version|int >= 8-%}
https://images.rdoproject.org/centos8//{{ release }}/rdo_trunk/{{ dlrn_hash|default(dlrn_hash_tag) }}/overcloud-full.tar
{%- else -%}
http://images.rdoproject.org/{{ release }}/rdo_trunk/{{ dlrn_hash|default(dlrn_hash_tag) }}/overcloud-full.tar
{%- endif %}
ipa_image_url: >-
{% if ansible_distribution == 'RedHat' and ansible_distribution_major_version >= '8' -%}
{% if ansible_distribution == 'RedHat' and ansible_distribution_major_version|int >= 8 -%}
https://images.rdoproject.org:4433/rcm-guest/images/redhat8/{{ release }}/rdo_trunk/{{ dlrn_hash|default(dlrn_hash_tag) }}/ironic-python-agent.tar
{%- elif ansible_distribution_major_version|int >= 8 -%}
https://images.rdoproject.org/centos8//{{ release }}/rdo_trunk/{{ dlrn_hash|default(dlrn_hash_tag) }}/ironic-python-agent.tar
{%- else -%}
http://images.rdoproject.org/{{ release }}/rdo_trunk/{{ dlrn_hash|default(dlrn_hash_tag) }}/ironic-python-agent.tar
{%- endif %}