24de593f4b
This change converts our use of CentOS7/88 to UBI8, which should provide a better test environment which will match that of production for future releases of TripleO. While this image change will better match production clouds thanks in large part to TCIB, it will also remove our use of docker.io (dockerhub) which fraught with peril due to the ongoing API rate limits saga. Change-Id: I69f3400568d865c1f3505913077ecd7fe36d7d43 Signed-off-by: Gael Chamoulaud (Strider) <gchamoul@redhat.com> (cherry picked from commit5bf1427b43
) (cherry picked from commitca884424f4
) (cherry picked from commit989406134c
)
50 lines
991 B
YAML
50 lines
991 B
YAML
---
|
|
driver:
|
|
name: podman
|
|
|
|
log: true
|
|
|
|
platforms:
|
|
- name: ubi8
|
|
hostname: ubi8
|
|
image: ubi8/ubi-init
|
|
registry:
|
|
url: registry.access.redhat.com
|
|
dockerfile: Dockerfile
|
|
pkg_extras: python*-setuptools
|
|
volumes:
|
|
- /etc/ci/mirror_info.sh:/etc/ci/mirror_info.sh:ro
|
|
- /etc/pki/rpm-gpg:/etc/pki/rpm-gpg
|
|
- /opt/yum.repos.d:/etc/yum.repos.d:rw
|
|
privileged: true
|
|
environment: &env
|
|
http_proxy: "{{ lookup('env', 'http_proxy') }}"
|
|
https_proxy: "{{ lookup('env', 'https_proxy') }}"
|
|
ulimits: &ulimit
|
|
- host
|
|
|
|
provisioner:
|
|
name: ansible
|
|
inventory:
|
|
hosts:
|
|
all:
|
|
hosts:
|
|
ubi8:
|
|
ansible_python_interpreter: /usr/bin/python3
|
|
log: true
|
|
env:
|
|
ANSIBLE_STDOUT_CALLBACK: yaml
|
|
ANSIBLE_LIBRARY: "${ANSIBLE_LIBRARY:-/usr/share/ansible/plugins/modules}"
|
|
|
|
scenario:
|
|
test_sequence:
|
|
- destroy
|
|
- create
|
|
- prepare
|
|
- converge
|
|
- verify
|
|
- destroy
|
|
|
|
verifier:
|
|
name: testinfra
|