Use CI mirrors for molecule jobs

Mount mirrors file into molecule containers if docker driver is
used, otherwise use hosts mirrors file.

Change-Id: I179004fde7587a81eb87f3cc477870b4b48bd83e
This commit is contained in:
Sagi Shnaidman 2020-02-20 08:47:32 +02:00
parent 57cc4d8075
commit dcf8c98fb9
52 changed files with 191 additions and 2 deletions

View File

@ -10,6 +10,8 @@ platforms:
image: centos:7 image: centos:7
dockerfile: Dockerfile dockerfile: Dockerfile
pkg_extras: python-setuptools pkg_extras: python-setuptools
volumes:
- /etc/ci/mirror_info.sh:/etc/ci/mirror_info.sh:ro
easy_install: easy_install:
- pip - pip
environment: &env environment: &env
@ -21,6 +23,8 @@ platforms:
image: centos:8 image: centos:8
dockerfile: Dockerfile dockerfile: Dockerfile
pkg_extras: python*-setuptools pkg_extras: python*-setuptools
volumes:
- /etc/ci/mirror_info.sh:/etc/ci/mirror_info.sh:ro
environment: environment:
<<: *env <<: *env

View File

@ -10,6 +10,8 @@ platforms:
image: centos:7 image: centos:7
dockerfile: Dockerfile dockerfile: Dockerfile
pkg_extras: python-setuptools pkg_extras: python-setuptools
volumes:
- /etc/ci/mirror_info.sh:/etc/ci/mirror_info.sh:ro
easy_install: easy_install:
- pip - pip
environment: &env environment: &env
@ -21,6 +23,8 @@ platforms:
image: centos:8 image: centos:8
dockerfile: Dockerfile dockerfile: Dockerfile
pkg_extras: python*-setuptools pkg_extras: python*-setuptools
volumes:
- /etc/ci/mirror_info.sh:/etc/ci/mirror_info.sh:ro
environment: environment:
<<: *env <<: *env

View File

@ -18,3 +18,4 @@
test_deps_extra_packages: [] test_deps_extra_packages: []
test_deps_setup_tripleo: false test_deps_setup_tripleo: false
test_deps_repo_version: "{{ ansible_distribution | lower }}{{ ansible_distribution_major_version }}-master" test_deps_repo_version: "{{ ansible_distribution | lower }}{{ ansible_distribution_major_version }}-master"
test_deps_mirrors_file_path: /etc/ci/mirror_info.sh

View File

@ -10,6 +10,8 @@ platforms:
image: centos:7 image: centos:7
dockerfile: Dockerfile dockerfile: Dockerfile
pkg_extras: python-setuptools pkg_extras: python-setuptools
volumes:
- /etc/ci/mirror_info.sh:/etc/ci/mirror_info.sh:ro
easy_install: easy_install:
- pip - pip
environment: &env environment: &env
@ -21,6 +23,8 @@ platforms:
image: centos:8 image: centos:8
dockerfile: Dockerfile dockerfile: Dockerfile
pkg_extras: python*-setuptools pkg_extras: python*-setuptools
volumes:
- /etc/ci/mirror_info.sh:/etc/ci/mirror_info.sh:ro
environment: environment:
<<: *env <<: *env

View File

@ -31,6 +31,37 @@
tags: tags:
- always - always
- name: Detect mirrors file
stat:
path: "{{ test_deps_mirrors_file_path }}"
register: mirrors_file
- when: mirrors_file.stat.exists
block:
- name: Discover mirror for RDO if exists
shell: |
source {{ test_deps_mirrors_file_path }}
echo $NODEPOOL_RDO_PROXY
register: rdo_mirror_proxy
changed_when: false
- name: Set fact for the mirror with proxy
set_fact:
rdo_mirror: "{{ rdo_mirror_proxy.stdout|default('https://trunk.rdoproject.org', true) }}"
- name: Set fact for the mirror without proxy
set_fact:
rdo_mirror: 'https://trunk.rdoproject.org'
when: not mirrors_file.stat.exists
- name: Print used mirror
debug: var=rdo_mirror
- name: Set test_deps_repo
set_fact:
test_deps_repo: "{{ test_deps_repo.replace('https://trunk.rdoproject.org', rdo_mirror) }}"
- name: RHEL Block - name: RHEL Block
become: true become: true
when: when:
@ -38,12 +69,12 @@
block: block:
- name: install deplorean repo - name: install deplorean repo
get_url: get_url:
url: "https://trunk.rdoproject.org/{{ test_deps_repo_version }}/current-tripleo/delorean.repo" url: "{{ rdo_mirror }}/{{ test_deps_repo_version }}/current-tripleo/delorean.repo"
dest: /etc/yum.repos.d/delorean.repo dest: /etc/yum.repos.d/delorean.repo
- name: install deplorean-deps repo - name: install deplorean-deps repo
get_url: get_url:
url: "https://trunk.rdoproject.org/{{ test_deps_repo_version }}/delorean-deps.repo" url: "{{ rdo_mirror }}/{{ test_deps_repo_version }}/delorean-deps.repo"
dest: /etc/yum.repos.d/delorean-deps.repo dest: /etc/yum.repos.d/delorean-deps.repo
- include_tasks: tripleo-setup.yml - include_tasks: tripleo-setup.yml

View File

@ -10,6 +10,8 @@ platforms:
image: centos:7 image: centos:7
dockerfile: Dockerfile dockerfile: Dockerfile
pkg_extras: python-setuptools pkg_extras: python-setuptools
volumes:
- /etc/ci/mirror_info.sh:/etc/ci/mirror_info.sh:ro
easy_install: easy_install:
- pip - pip
environment: &env environment: &env
@ -21,6 +23,8 @@ platforms:
image: centos:8 image: centos:8
dockerfile: Dockerfile dockerfile: Dockerfile
pkg_extras: python*-setuptools pkg_extras: python*-setuptools
volumes:
- /etc/ci/mirror_info.sh:/etc/ci/mirror_info.sh:ro
environment: environment:
<<: *env <<: *env

View File

@ -10,6 +10,8 @@ platforms:
image: centos:7 image: centos:7
dockerfile: Dockerfile dockerfile: Dockerfile
pkg_extras: python-setuptools pkg_extras: python-setuptools
volumes:
- /etc/ci/mirror_info.sh:/etc/ci/mirror_info.sh:ro
easy_install: easy_install:
- pip - pip
environment: &env environment: &env
@ -21,6 +23,8 @@ platforms:
image: centos:8 image: centos:8
dockerfile: Dockerfile dockerfile: Dockerfile
pkg_extras: python*-setuptools pkg_extras: python*-setuptools
volumes:
- /etc/ci/mirror_info.sh:/etc/ci/mirror_info.sh:ro
environment: environment:
<<: *env <<: *env

View File

@ -10,6 +10,8 @@ platforms:
image: centos:7 image: centos:7
dockerfile: Dockerfile dockerfile: Dockerfile
pkg_extras: python-setuptools pkg_extras: python-setuptools
volumes:
- /etc/ci/mirror_info.sh:/etc/ci/mirror_info.sh:ro
easy_install: easy_install:
- pip - pip
environment: &env environment: &env
@ -21,6 +23,8 @@ platforms:
image: centos:8 image: centos:8
dockerfile: Dockerfile dockerfile: Dockerfile
pkg_extras: python*-setuptools pkg_extras: python*-setuptools
volumes:
- /etc/ci/mirror_info.sh:/etc/ci/mirror_info.sh:ro
environment: environment:
<<: *env <<: *env

View File

@ -24,6 +24,7 @@ platforms:
volumes: volumes:
- /run/udev:/run/udev:ro - /run/udev:/run/udev:ro
- /sys/fs/cgroup:/sys/fs/cgroup:ro - /sys/fs/cgroup:/sys/fs/cgroup:ro
- /etc/ci/mirror_info.sh:/etc/ci/mirror_info.sh:ro
- name: centos8 - name: centos8
hostname: centos8 hostname: centos8
@ -43,6 +44,7 @@ platforms:
volumes: volumes:
- /run/udev:/run/udev:ro - /run/udev:/run/udev:ro
- /sys/fs/cgroup:/sys/fs/cgroup:ro - /sys/fs/cgroup:/sys/fs/cgroup:ro
- /etc/ci/mirror_info.sh:/etc/ci/mirror_info.sh:ro
provisioner: provisioner:
name: ansible name: ansible

View File

@ -10,6 +10,8 @@ platforms:
image: centos:7 image: centos:7
dockerfile: Dockerfile dockerfile: Dockerfile
pkg_extras: python-setuptools pkg_extras: python-setuptools
volumes:
- /etc/ci/mirror_info.sh:/etc/ci/mirror_info.sh:ro
easy_install: easy_install:
- pip - pip
environment: &env environment: &env
@ -21,6 +23,8 @@ platforms:
image: centos:8 image: centos:8
dockerfile: Dockerfile dockerfile: Dockerfile
pkg_extras: python*-setuptools pkg_extras: python*-setuptools
volumes:
- /etc/ci/mirror_info.sh:/etc/ci/mirror_info.sh:ro
environment: environment:
<<: *env <<: *env

View File

@ -10,6 +10,8 @@ platforms:
image: centos:7 image: centos:7
dockerfile: Dockerfile dockerfile: Dockerfile
pkg_extras: python-setuptools pkg_extras: python-setuptools
volumes:
- /etc/ci/mirror_info.sh:/etc/ci/mirror_info.sh:ro
easy_install: easy_install:
- pip - pip
environment: &env environment: &env
@ -21,6 +23,8 @@ platforms:
image: centos:8 image: centos:8
dockerfile: Dockerfile dockerfile: Dockerfile
pkg_extras: python*-setuptools pkg_extras: python*-setuptools
volumes:
- /etc/ci/mirror_info.sh:/etc/ci/mirror_info.sh:ro
environment: environment:
<<: *env <<: *env

View File

@ -10,6 +10,8 @@ platforms:
image: centos:7 image: centos:7
dockerfile: Dockerfile dockerfile: Dockerfile
pkg_extras: python-setuptools pkg_extras: python-setuptools
volumes:
- /etc/ci/mirror_info.sh:/etc/ci/mirror_info.sh:ro
easy_install: easy_install:
- pip - pip
environment: &env environment: &env
@ -21,6 +23,8 @@ platforms:
image: centos:8 image: centos:8
dockerfile: Dockerfile dockerfile: Dockerfile
pkg_extras: python*-setuptools pkg_extras: python*-setuptools
volumes:
- /etc/ci/mirror_info.sh:/etc/ci/mirror_info.sh:ro
environment: environment:
<<: *env <<: *env

View File

@ -10,6 +10,8 @@ platforms:
image: centos:7 image: centos:7
dockerfile: Dockerfile dockerfile: Dockerfile
pkg_extras: python-setuptools pkg_extras: python-setuptools
volumes:
- /etc/ci/mirror_info.sh:/etc/ci/mirror_info.sh:ro
easy_install: easy_install:
- pip - pip
environment: &env environment: &env
@ -21,6 +23,8 @@ platforms:
image: centos:8 image: centos:8
dockerfile: Dockerfile dockerfile: Dockerfile
pkg_extras: python*-setuptools pkg_extras: python*-setuptools
volumes:
- /etc/ci/mirror_info.sh:/etc/ci/mirror_info.sh:ro
environment: environment:
<<: *env <<: *env

View File

@ -10,6 +10,8 @@ platforms:
image: centos:7 image: centos:7
dockerfile: Dockerfile dockerfile: Dockerfile
pkg_extras: python-setuptools pkg_extras: python-setuptools
volumes:
- /etc/ci/mirror_info.sh:/etc/ci/mirror_info.sh:ro
easy_install: easy_install:
- pip - pip
environment: &env environment: &env
@ -21,6 +23,8 @@ platforms:
image: centos:8 image: centos:8
dockerfile: Dockerfile dockerfile: Dockerfile
pkg_extras: python*-setuptools pkg_extras: python*-setuptools
volumes:
- /etc/ci/mirror_info.sh:/etc/ci/mirror_info.sh:ro
environment: environment:
<<: *env <<: *env

View File

@ -10,6 +10,8 @@ platforms:
image: centos:7 image: centos:7
dockerfile: Dockerfile dockerfile: Dockerfile
pkg_extras: python-setuptools pkg_extras: python-setuptools
volumes:
- /etc/ci/mirror_info.sh:/etc/ci/mirror_info.sh:ro
easy_install: easy_install:
- pip - pip
environment: &env environment: &env
@ -21,6 +23,8 @@ platforms:
image: centos:8 image: centos:8
dockerfile: Dockerfile dockerfile: Dockerfile
pkg_extras: python*-setuptools pkg_extras: python*-setuptools
volumes:
- /etc/ci/mirror_info.sh:/etc/ci/mirror_info.sh:ro
environment: environment:
<<: *env <<: *env

View File

@ -10,6 +10,8 @@ platforms:
image: centos:7 image: centos:7
dockerfile: Dockerfile dockerfile: Dockerfile
pkg_extras: python-setuptools pkg_extras: python-setuptools
volumes:
- /etc/ci/mirror_info.sh:/etc/ci/mirror_info.sh:ro
easy_install: easy_install:
- pip - pip
environment: &env environment: &env
@ -21,6 +23,8 @@ platforms:
image: centos:8 image: centos:8
dockerfile: Dockerfile dockerfile: Dockerfile
pkg_extras: python*-setuptools pkg_extras: python*-setuptools
volumes:
- /etc/ci/mirror_info.sh:/etc/ci/mirror_info.sh:ro
environment: environment:
<<: *env <<: *env

View File

@ -10,6 +10,8 @@ platforms:
image: centos:7 image: centos:7
dockerfile: Dockerfile dockerfile: Dockerfile
pkg_extras: python-setuptools pkg_extras: python-setuptools
volumes:
- /etc/ci/mirror_info.sh:/etc/ci/mirror_info.sh:ro
easy_install: easy_install:
- pip - pip
environment: &env environment: &env
@ -21,6 +23,8 @@ platforms:
image: centos:8 image: centos:8
dockerfile: Dockerfile dockerfile: Dockerfile
pkg_extras: python*-setuptools pkg_extras: python*-setuptools
volumes:
- /etc/ci/mirror_info.sh:/etc/ci/mirror_info.sh:ro
environment: environment:
<<: *env <<: *env

View File

@ -10,6 +10,8 @@ platforms:
image: centos:7 image: centos:7
dockerfile: Dockerfile dockerfile: Dockerfile
pkg_extras: python-setuptools pkg_extras: python-setuptools
volumes:
- /etc/ci/mirror_info.sh:/etc/ci/mirror_info.sh:ro
easy_install: easy_install:
- pip - pip
environment: &env environment: &env
@ -21,6 +23,8 @@ platforms:
image: centos:8 image: centos:8
dockerfile: Dockerfile dockerfile: Dockerfile
pkg_extras: python*-setuptools pkg_extras: python*-setuptools
volumes:
- /etc/ci/mirror_info.sh:/etc/ci/mirror_info.sh:ro
environment: environment:
<<: *env <<: *env

View File

@ -10,6 +10,8 @@ platforms:
image: centos:7 image: centos:7
dockerfile: Dockerfile dockerfile: Dockerfile
pkg_extras: python-setuptools pkg_extras: python-setuptools
volumes:
- /etc/ci/mirror_info.sh:/etc/ci/mirror_info.sh:ro
easy_install: easy_install:
- pip - pip
environment: &env environment: &env
@ -21,6 +23,8 @@ platforms:
image: centos:8 image: centos:8
dockerfile: Dockerfile dockerfile: Dockerfile
pkg_extras: python*-setuptools pkg_extras: python*-setuptools
volumes:
- /etc/ci/mirror_info.sh:/etc/ci/mirror_info.sh:ro
environment: environment:
<<: *env <<: *env

View File

@ -10,6 +10,8 @@ platforms:
image: centos:7 image: centos:7
dockerfile: Dockerfile dockerfile: Dockerfile
pkg_extras: python-setuptools pkg_extras: python-setuptools
volumes:
- /etc/ci/mirror_info.sh:/etc/ci/mirror_info.sh:ro
easy_install: easy_install:
- pip - pip
environment: &env environment: &env
@ -21,6 +23,8 @@ platforms:
image: centos:8 image: centos:8
dockerfile: Dockerfile dockerfile: Dockerfile
pkg_extras: python*-setuptools pkg_extras: python*-setuptools
volumes:
- /etc/ci/mirror_info.sh:/etc/ci/mirror_info.sh:ro
environment: environment:
<<: *env <<: *env

View File

@ -10,6 +10,8 @@ platforms:
image: centos:7 image: centos:7
dockerfile: Dockerfile dockerfile: Dockerfile
pkg_extras: python-setuptools pkg_extras: python-setuptools
volumes:
- /etc/ci/mirror_info.sh:/etc/ci/mirror_info.sh:ro
easy_install: easy_install:
- pip - pip
environment: &env environment: &env
@ -21,6 +23,8 @@ platforms:
image: centos:8 image: centos:8
dockerfile: Dockerfile dockerfile: Dockerfile
pkg_extras: python*-setuptools pkg_extras: python*-setuptools
volumes:
- /etc/ci/mirror_info.sh:/etc/ci/mirror_info.sh:ro
environment: environment:
<<: *env <<: *env

View File

@ -10,6 +10,8 @@ platforms:
image: centos:7 image: centos:7
dockerfile: Dockerfile dockerfile: Dockerfile
pkg_extras: python-setuptools pkg_extras: python-setuptools
volumes:
- /etc/ci/mirror_info.sh:/etc/ci/mirror_info.sh:ro
easy_install: easy_install:
- pip - pip
environment: &env environment: &env
@ -21,6 +23,8 @@ platforms:
image: centos:8 image: centos:8
dockerfile: Dockerfile dockerfile: Dockerfile
pkg_extras: python*-setuptools pkg_extras: python*-setuptools
volumes:
- /etc/ci/mirror_info.sh:/etc/ci/mirror_info.sh:ro
environment: environment:
<<: *env <<: *env

View File

@ -10,6 +10,8 @@ platforms:
image: centos:7 image: centos:7
dockerfile: Dockerfile dockerfile: Dockerfile
pkg_extras: python-setuptools pkg_extras: python-setuptools
volumes:
- /etc/ci/mirror_info.sh:/etc/ci/mirror_info.sh:ro
easy_install: easy_install:
- pip - pip
environment: &env environment: &env
@ -21,6 +23,8 @@ platforms:
image: centos:8 image: centos:8
dockerfile: Dockerfile dockerfile: Dockerfile
pkg_extras: python*-setuptools pkg_extras: python*-setuptools
volumes:
- /etc/ci/mirror_info.sh:/etc/ci/mirror_info.sh:ro
environment: environment:
<<: *env <<: *env

View File

@ -10,6 +10,8 @@ platforms:
image: centos:7 image: centos:7
dockerfile: Dockerfile dockerfile: Dockerfile
pkg_extras: python-setuptools pkg_extras: python-setuptools
volumes:
- /etc/ci/mirror_info.sh:/etc/ci/mirror_info.sh:ro
easy_install: easy_install:
- pip - pip
environment: &env environment: &env
@ -21,6 +23,8 @@ platforms:
image: centos:8 image: centos:8
dockerfile: Dockerfile dockerfile: Dockerfile
pkg_extras: python*-setuptools pkg_extras: python*-setuptools
volumes:
- /etc/ci/mirror_info.sh:/etc/ci/mirror_info.sh:ro
environment: environment:
<<: *env <<: *env

View File

@ -24,6 +24,7 @@ platforms:
volumes: volumes:
- /run/udev:/run/udev:ro - /run/udev:/run/udev:ro
- /sys/fs/cgroup:/sys/fs/cgroup:ro - /sys/fs/cgroup:/sys/fs/cgroup:ro
- /etc/ci/mirror_info.sh:/etc/ci/mirror_info.sh:ro
- name: centos8 - name: centos8
hostname: centos8 hostname: centos8
@ -43,6 +44,7 @@ platforms:
volumes: volumes:
- /run/udev:/run/udev:ro - /run/udev:/run/udev:ro
- /sys/fs/cgroup:/sys/fs/cgroup:ro - /sys/fs/cgroup:/sys/fs/cgroup:ro
- /etc/ci/mirror_info.sh:/etc/ci/mirror_info.sh:ro
provisioner: provisioner:
name: ansible name: ansible

View File

@ -24,6 +24,7 @@ platforms:
volumes: volumes:
- /run/udev:/run/udev:ro - /run/udev:/run/udev:ro
- /sys/fs/cgroup:/sys/fs/cgroup:ro - /sys/fs/cgroup:/sys/fs/cgroup:ro
- /etc/ci/mirror_info.sh:/etc/ci/mirror_info.sh:ro
- name: centos8 - name: centos8
hostname: centos8 hostname: centos8
@ -43,6 +44,7 @@ platforms:
volumes: volumes:
- /run/udev:/run/udev:ro - /run/udev:/run/udev:ro
- /sys/fs/cgroup:/sys/fs/cgroup:ro - /sys/fs/cgroup:/sys/fs/cgroup:ro
- /etc/ci/mirror_info.sh:/etc/ci/mirror_info.sh:ro
provisioner: provisioner:
name: ansible name: ansible

View File

@ -10,6 +10,8 @@ platforms:
image: centos:7 image: centos:7
dockerfile: Dockerfile dockerfile: Dockerfile
network_mode: host network_mode: host
volumes:
- /etc/ci/mirror_info.sh:/etc/ci/mirror_info.sh:ro
easy_install: easy_install:
- pip - pip
environment: &env environment: &env

View File

@ -10,6 +10,8 @@ platforms:
image: centos:7 image: centos:7
dockerfile: Dockerfile dockerfile: Dockerfile
pkg_extras: python-setuptools pkg_extras: python-setuptools
volumes:
- /etc/ci/mirror_info.sh:/etc/ci/mirror_info.sh:ro
easy_install: easy_install:
- pip - pip
environment: &env environment: &env
@ -21,6 +23,8 @@ platforms:
image: centos:8 image: centos:8
dockerfile: Dockerfile dockerfile: Dockerfile
pkg_extras: python*-setuptools pkg_extras: python*-setuptools
volumes:
- /etc/ci/mirror_info.sh:/etc/ci/mirror_info.sh:ro
environment: environment:
<<: *env <<: *env

View File

@ -25,6 +25,7 @@ platforms:
volumes: volumes:
- /run/udev:/run/udev:ro - /run/udev:/run/udev:ro
- /sys/fs/cgroup:/sys/fs/cgroup:ro - /sys/fs/cgroup:/sys/fs/cgroup:ro
- /etc/ci/mirror_info.sh:/etc/ci/mirror_info.sh:ro
- name: centos8 - name: centos8
hostname: centos8 hostname: centos8
@ -44,6 +45,7 @@ platforms:
volumes: volumes:
- /run/udev:/run/udev:ro - /run/udev:/run/udev:ro
- /sys/fs/cgroup:/sys/fs/cgroup:ro - /sys/fs/cgroup:/sys/fs/cgroup:ro
- /etc/ci/mirror_info.sh:/etc/ci/mirror_info.sh:ro
provisioner: provisioner:
name: ansible name: ansible

View File

@ -25,6 +25,7 @@ platforms:
volumes: volumes:
- /run/udev:/run/udev:ro - /run/udev:/run/udev:ro
- /sys/fs/cgroup:/sys/fs/cgroup:ro - /sys/fs/cgroup:/sys/fs/cgroup:ro
- /etc/ci/mirror_info.sh:/etc/ci/mirror_info.sh:ro
- name: centos8 - name: centos8
hostname: centos8 hostname: centos8
@ -44,6 +45,7 @@ platforms:
volumes: volumes:
- /run/udev:/run/udev:ro - /run/udev:/run/udev:ro
- /sys/fs/cgroup:/sys/fs/cgroup:ro - /sys/fs/cgroup:/sys/fs/cgroup:ro
- /etc/ci/mirror_info.sh:/etc/ci/mirror_info.sh:ro
provisioner: provisioner:
name: ansible name: ansible

View File

@ -24,6 +24,7 @@ platforms:
volumes: volumes:
- /dev:/dev - /dev:/dev
- /lib/modules:/lib/modules - /lib/modules:/lib/modules
- /etc/ci/mirror_info.sh:/etc/ci/mirror_info.sh:ro
- name: centos8 - name: centos8
hostname: centos8 hostname: centos8
@ -43,6 +44,7 @@ platforms:
volumes: volumes:
- /dev:/dev - /dev:/dev
- /lib/modules:/lib/modules - /lib/modules:/lib/modules
- /etc/ci/mirror_info.sh:/etc/ci/mirror_info.sh:ro
provisioner: provisioner:
name: ansible name: ansible

View File

@ -24,6 +24,7 @@ platforms:
volumes: volumes:
- /dev:/dev - /dev:/dev
- /lib/modules:/lib/modules - /lib/modules:/lib/modules
- /etc/ci/mirror_info.sh:/etc/ci/mirror_info.sh:ro
- name: centos8 - name: centos8
hostname: centos8 hostname: centos8
@ -43,6 +44,7 @@ platforms:
volumes: volumes:
- /dev:/dev - /dev:/dev
- /lib/modules:/lib/modules - /lib/modules:/lib/modules
- /etc/ci/mirror_info.sh:/etc/ci/mirror_info.sh:ro
provisioner: provisioner:
name: ansible name: ansible

View File

@ -24,6 +24,7 @@ platforms:
volumes: volumes:
- /dev:/dev - /dev:/dev
- /lib/modules:/lib/modules - /lib/modules:/lib/modules
- /etc/ci/mirror_info.sh:/etc/ci/mirror_info.sh:ro
- name: centos8 - name: centos8
hostname: centos8 hostname: centos8
@ -43,6 +44,7 @@ platforms:
volumes: volumes:
- /dev:/dev - /dev:/dev
- /lib/modules:/lib/modules - /lib/modules:/lib/modules
- /etc/ci/mirror_info.sh:/etc/ci/mirror_info.sh:ro
provisioner: provisioner:
name: ansible name: ansible

View File

@ -28,6 +28,7 @@ platforms:
volumes: volumes:
- /dev:/dev - /dev:/dev
- /lib/modules:/lib/modules - /lib/modules:/lib/modules
- /etc/ci/mirror_info.sh:/etc/ci/mirror_info.sh:ro
# TODO(cloudnull): when RDO has centos8 repos this test node should be re-enabled. # TODO(cloudnull): when RDO has centos8 repos this test node should be re-enabled.
# #

View File

@ -24,6 +24,7 @@ platforms:
volumes: volumes:
- /dev:/dev - /dev:/dev
- /lib/modules:/lib/modules - /lib/modules:/lib/modules
- /etc/ci/mirror_info.sh:/etc/ci/mirror_info.sh:ro
# TODO(cloudnull): when RDO has centos8 repos this test node should be re-enabled. # TODO(cloudnull): when RDO has centos8 repos this test node should be re-enabled.
# #

View File

@ -10,6 +10,8 @@ platforms:
image: centos:7 image: centos:7
dockerfile: Dockerfile dockerfile: Dockerfile
pkg_extras: python-setuptools pkg_extras: python-setuptools
volumes:
- /etc/ci/mirror_info.sh:/etc/ci/mirror_info.sh:ro
easy_install: easy_install:
- pip - pip
environment: &env environment: &env
@ -21,6 +23,8 @@ platforms:
image: centos:8 image: centos:8
dockerfile: Dockerfile dockerfile: Dockerfile
pkg_extras: python*-setuptools pkg_extras: python*-setuptools
volumes:
- /etc/ci/mirror_info.sh:/etc/ci/mirror_info.sh:ro
environment: environment:
<<: *env <<: *env

View File

@ -24,6 +24,7 @@ platforms:
volumes: volumes:
- /run/udev:/run/udev:ro - /run/udev:/run/udev:ro
- /sys/fs/cgroup:/sys/fs/cgroup:ro - /sys/fs/cgroup:/sys/fs/cgroup:ro
- /etc/ci/mirror_info.sh:/etc/ci/mirror_info.sh:ro
- name: centos8 - name: centos8
hostname: centos8 hostname: centos8
@ -43,6 +44,7 @@ platforms:
volumes: volumes:
- /run/udev:/run/udev:ro - /run/udev:/run/udev:ro
- /sys/fs/cgroup:/sys/fs/cgroup:ro - /sys/fs/cgroup:/sys/fs/cgroup:ro
- /etc/ci/mirror_info.sh:/etc/ci/mirror_info.sh:ro
provisioner: provisioner:
name: ansible name: ansible

View File

@ -24,6 +24,7 @@ platforms:
volumes: volumes:
- /run/udev:/run/udev:ro - /run/udev:/run/udev:ro
- /sys/fs/cgroup:/sys/fs/cgroup:ro - /sys/fs/cgroup:/sys/fs/cgroup:ro
- /etc/ci/mirror_info.sh:/etc/ci/mirror_info.sh:ro
provisioner: provisioner:
name: ansible name: ansible

View File

@ -10,6 +10,8 @@ platforms:
image: centos:7 image: centos:7
dockerfile: Dockerfile dockerfile: Dockerfile
pkg_extras: python-setuptools pkg_extras: python-setuptools
volumes:
- /etc/ci/mirror_info.sh:/etc/ci/mirror_info.sh:ro
easy_install: easy_install:
- pip - pip
environment: &env environment: &env
@ -21,6 +23,8 @@ platforms:
image: centos:8 image: centos:8
dockerfile: Dockerfile dockerfile: Dockerfile
pkg_extras: python*-setuptools pkg_extras: python*-setuptools
volumes:
- /etc/ci/mirror_info.sh:/etc/ci/mirror_info.sh:ro
environment: environment:
<<: *env <<: *env

View File

@ -10,6 +10,8 @@ platforms:
image: centos:7 image: centos:7
dockerfile: Dockerfile dockerfile: Dockerfile
pkg_extras: python-setuptools pkg_extras: python-setuptools
volumes:
- /etc/ci/mirror_info.sh:/etc/ci/mirror_info.sh:ro
easy_install: easy_install:
- pip - pip
environment: &env environment: &env
@ -21,6 +23,8 @@ platforms:
image: centos:8 image: centos:8
dockerfile: Dockerfile dockerfile: Dockerfile
pkg_extras: python*-setuptools pkg_extras: python*-setuptools
volumes:
- /etc/ci/mirror_info.sh:/etc/ci/mirror_info.sh:ro
environment: environment:
<<: *env <<: *env

View File

@ -10,6 +10,8 @@ platforms:
image: centos:7 image: centos:7
dockerfile: Dockerfile dockerfile: Dockerfile
pkg_extras: python-setuptools pkg_extras: python-setuptools
volumes:
- /etc/ci/mirror_info.sh:/etc/ci/mirror_info.sh:ro
easy_install: easy_install:
- pip - pip
environment: &env environment: &env
@ -21,6 +23,8 @@ platforms:
image: centos:8 image: centos:8
dockerfile: Dockerfile dockerfile: Dockerfile
pkg_extras: python*-setuptools pkg_extras: python*-setuptools
volumes:
- /etc/ci/mirror_info.sh:/etc/ci/mirror_info.sh:ro
environment: environment:
<<: *env <<: *env

View File

@ -10,6 +10,8 @@ platforms:
image: centos:7 image: centos:7
dockerfile: Dockerfile dockerfile: Dockerfile
pkg_extras: python-setuptools pkg_extras: python-setuptools
volumes:
- /etc/ci/mirror_info.sh:/etc/ci/mirror_info.sh:ro
easy_install: easy_install:
- pip - pip
environment: &env environment: &env
@ -21,6 +23,8 @@ platforms:
image: centos:8 image: centos:8
dockerfile: Dockerfile dockerfile: Dockerfile
pkg_extras: python*-setuptools pkg_extras: python*-setuptools
volumes:
- /etc/ci/mirror_info.sh:/etc/ci/mirror_info.sh:ro
environment: environment:
<<: *env <<: *env

View File

@ -10,6 +10,8 @@ platforms:
image: centos:7 image: centos:7
dockerfile: Dockerfile dockerfile: Dockerfile
pkg_extras: python-setuptools pkg_extras: python-setuptools
volumes:
- /etc/ci/mirror_info.sh:/etc/ci/mirror_info.sh:ro
easy_install: easy_install:
- pip - pip
environment: &env environment: &env
@ -21,6 +23,8 @@ platforms:
image: centos:8 image: centos:8
dockerfile: Dockerfile dockerfile: Dockerfile
pkg_extras: python*-setuptools pkg_extras: python*-setuptools
volumes:
- /etc/ci/mirror_info.sh:/etc/ci/mirror_info.sh:ro
environment: environment:
<<: *env <<: *env

View File

@ -24,6 +24,7 @@ platforms:
volumes: volumes:
- /run/udev:/run/udev:ro - /run/udev:/run/udev:ro
- /sys/fs/cgroup:/sys/fs/cgroup:ro - /sys/fs/cgroup:/sys/fs/cgroup:ro
- /etc/ci/mirror_info.sh:/etc/ci/mirror_info.sh:ro
- name: centos8 - name: centos8
hostname: centos8 hostname: centos8
@ -43,6 +44,7 @@ platforms:
volumes: volumes:
- /run/udev:/run/udev:ro - /run/udev:/run/udev:ro
- /sys/fs/cgroup:/sys/fs/cgroup:ro - /sys/fs/cgroup:/sys/fs/cgroup:ro
- /etc/ci/mirror_info.sh:/etc/ci/mirror_info.sh:ro
provisioner: provisioner:
name: ansible name: ansible

View File

@ -24,6 +24,7 @@ platforms:
volumes: volumes:
- /run/udev:/run/udev:ro - /run/udev:/run/udev:ro
- /sys/fs/cgroup:/sys/fs/cgroup:ro - /sys/fs/cgroup:/sys/fs/cgroup:ro
- /etc/ci/mirror_info.sh:/etc/ci/mirror_info.sh:ro
- name: centos8 - name: centos8
hostname: centos8 hostname: centos8
@ -43,6 +44,7 @@ platforms:
volumes: volumes:
- /run/udev:/run/udev:ro - /run/udev:/run/udev:ro
- /sys/fs/cgroup:/sys/fs/cgroup:ro - /sys/fs/cgroup:/sys/fs/cgroup:ro
- /etc/ci/mirror_info.sh:/etc/ci/mirror_info.sh:ro
provisioner: provisioner:
name: ansible name: ansible

View File

@ -21,6 +21,7 @@ platforms:
- SYS_ADMIN - SYS_ADMIN
volumes: volumes:
- /sys/fs/cgroup:/sys/fs/cgroup:ro - /sys/fs/cgroup:/sys/fs/cgroup:ro
- /etc/ci/mirror_info.sh:/etc/ci/mirror_info.sh:ro
- name: centos8 - name: centos8
hostname: centos8 hostname: centos8
@ -35,6 +36,7 @@ platforms:
- SYS_ADMIN - SYS_ADMIN
volumes: volumes:
- /sys/fs/cgroup:/sys/fs/cgroup:ro - /sys/fs/cgroup:/sys/fs/cgroup:ro
- /etc/ci/mirror_info.sh:/etc/ci/mirror_info.sh:ro
provisioner: provisioner:
name: ansible name: ansible

View File

@ -24,6 +24,7 @@ platforms:
volumes: volumes:
- /run/udev:/run/udev:ro - /run/udev:/run/udev:ro
- /sys/fs/cgroup:/sys/fs/cgroup:ro - /sys/fs/cgroup:/sys/fs/cgroup:ro
- /etc/ci/mirror_info.sh:/etc/ci/mirror_info.sh:ro
- name: centos8 - name: centos8
hostname: centos8 hostname: centos8
@ -43,6 +44,7 @@ platforms:
volumes: volumes:
- /run/udev:/run/udev:ro - /run/udev:/run/udev:ro
- /sys/fs/cgroup:/sys/fs/cgroup:ro - /sys/fs/cgroup:/sys/fs/cgroup:ro
- /etc/ci/mirror_info.sh:/etc/ci/mirror_info.sh:ro
provisioner: provisioner:
name: ansible name: ansible

View File

@ -24,6 +24,7 @@ platforms:
volumes: volumes:
- /run/udev:/run/udev:ro - /run/udev:/run/udev:ro
- /sys/fs/cgroup:/sys/fs/cgroup:ro - /sys/fs/cgroup:/sys/fs/cgroup:ro
- /etc/ci/mirror_info.sh:/etc/ci/mirror_info.sh:ro
- name: overcloud-controller-1 - name: overcloud-controller-1
hostname: overcloud-controller-1 hostname: overcloud-controller-1
@ -43,6 +44,7 @@ platforms:
volumes: volumes:
- /run/udev:/run/udev:ro - /run/udev:/run/udev:ro
- /sys/fs/cgroup:/sys/fs/cgroup:ro - /sys/fs/cgroup:/sys/fs/cgroup:ro
- /etc/ci/mirror_info.sh:/etc/ci/mirror_info.sh:ro
provisioner: provisioner:
name: ansible name: ansible

View File

@ -10,6 +10,8 @@ platforms:
image: centos:7 image: centos:7
dockerfile: Dockerfile dockerfile: Dockerfile
pkg_extras: python-setuptools pkg_extras: python-setuptools
volumes:
- /etc/ci/mirror_info.sh:/etc/ci/mirror_info.sh:ro
easy_install: easy_install:
- pip - pip
environment: &env environment: &env
@ -21,6 +23,8 @@ platforms:
image: centos:8 image: centos:8
dockerfile: Dockerfile dockerfile: Dockerfile
pkg_extras: python*-setuptools pkg_extras: python*-setuptools
volumes:
- /etc/ci/mirror_info.sh:/etc/ci/mirror_info.sh:ro
environment: environment:
<<: *env <<: *env

View File

@ -10,6 +10,8 @@ platforms:
image: centos:7 image: centos:7
dockerfile: Dockerfile dockerfile: Dockerfile
pkg_extras: python-setuptools pkg_extras: python-setuptools
volumes:
- /etc/ci/mirror_info.sh:/etc/ci/mirror_info.sh:ro
easy_install: easy_install:
- pip - pip
environment: &env environment: &env
@ -21,6 +23,8 @@ platforms:
image: centos:8 image: centos:8
dockerfile: Dockerfile dockerfile: Dockerfile
pkg_extras: python*-setuptools pkg_extras: python*-setuptools
volumes:
- /etc/ci/mirror_info.sh:/etc/ci/mirror_info.sh:ro
environment: environment:
<<: *env <<: *env

View File

@ -24,6 +24,7 @@ platforms:
volumes: volumes:
- /run/udev:/run/udev:ro - /run/udev:/run/udev:ro
- /sys/fs/cgroup:/sys/fs/cgroup:ro - /sys/fs/cgroup:/sys/fs/cgroup:ro
- /etc/ci/mirror_info.sh:/etc/ci/mirror_info.sh:ro
- name: centos8 - name: centos8
hostname: centos8 hostname: centos8
@ -43,6 +44,7 @@ platforms:
volumes: volumes:
- /run/udev:/run/udev:ro - /run/udev:/run/udev:ro
- /sys/fs/cgroup:/sys/fs/cgroup:ro - /sys/fs/cgroup:/sys/fs/cgroup:ro
- /etc/ci/mirror_info.sh:/etc/ci/mirror_info.sh:ro
provisioner: provisioner:
name: ansible name: ansible

View File

@ -24,6 +24,7 @@ platforms:
volumes: volumes:
- /run/udev:/run/udev:ro - /run/udev:/run/udev:ro
- /sys/fs/cgroup:/sys/fs/cgroup:ro - /sys/fs/cgroup:/sys/fs/cgroup:ro
- /etc/ci/mirror_info.sh:/etc/ci/mirror_info.sh:ro
- name: centos8 - name: centos8
hostname: centos8 hostname: centos8
@ -43,6 +44,7 @@ platforms:
volumes: volumes:
- /run/udev:/run/udev:ro - /run/udev:/run/udev:ro
- /sys/fs/cgroup:/sys/fs/cgroup:ro - /sys/fs/cgroup:/sys/fs/cgroup:ro
- /etc/ci/mirror_info.sh:/etc/ci/mirror_info.sh:ro
provisioner: provisioner:
name: ansible name: ansible