You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.0 KiB
52 lines
1.0 KiB
--- |
|
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 python*-pyyaml |
|
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 |
|
options: |
|
vvv: true |
|
inventory: |
|
hosts: |
|
all: |
|
hosts: |
|
ubi8: |
|
ansible_python_interpreter: /usr/bin/python3 |
|
vars: |
|
ansible_user: root |
|
log: true |
|
env: |
|
ANSIBLE_STDOUT_CALLBACK: yaml |
|
ANSIBLE_LIBRARY: "${ANSIBLE_LIBRARY:-/usr/share/ansible/plugins/modules}" |
|
|
|
scenario: |
|
test_sequence: |
|
- destroy |
|
- create |
|
- prepare |
|
- converge |
|
- destroy |
|
|
|
verifier: |
|
name: testinfra
|
|
|