c90b0ea4e6
When priviledge mode is set, don't add any capabilities as they are included. Use 1.6.4 podman because 2.0.5 rootless doesn't work with systemd [1] Disable Selinux on host. [1] https://github.com/containers/podman/issues/8965 Closes-Bug: #1910970 Change-Id: I73ac1c405e8a3539937a5578bb003cba0b935d94
50 lines
951 B
YAML
50 lines
951 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 cronie rsyslog
|
|
command: /sbin/init
|
|
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
|
|
|
|
scenario:
|
|
test_sequence:
|
|
- destroy
|
|
- create
|
|
- prepare
|
|
- converge
|
|
- verify
|
|
- destroy
|
|
|
|
verifier:
|
|
name: testinfra
|