
This updates the freeipa-server image to fedora-36 and molecule images to stream9. Change-Id: I026207760d917524cee69dddd41448f3bc0245d2
55 lines
1.2 KiB
YAML
55 lines
1.2 KiB
YAML
---
|
|
driver:
|
|
name: podman
|
|
|
|
log: true
|
|
|
|
platforms:
|
|
- name: centos9
|
|
hostname: test-0.example.test
|
|
image: centos/centos:stream9
|
|
registry:
|
|
url: quay.io
|
|
command: /sbin/init
|
|
pkg_extras: systemd ipa-client pip
|
|
easy_install:
|
|
- urllib_gssapi
|
|
tmpfs:
|
|
- /run
|
|
- /tmp
|
|
volumes:
|
|
- /sys/fs/cgroup:/sys/fs/cgroup:ro
|
|
- /etc/pki/rpm-gpg:/etc/pki/rpm-gpg
|
|
dockerfile: Dockerfile
|
|
network_mode: host
|
|
environment: &env
|
|
http_proxy: "{{ lookup('env', 'http_proxy') }}"
|
|
https_proxy: "{{ lookup('env', 'https_proxy') }}"
|
|
|
|
provisioner:
|
|
name: ansible
|
|
log: true
|
|
env:
|
|
ANSIBLE_STDOUT_CALLBACK: yaml
|
|
ANSIBLE_ROLES_PATH: "${ANSIBLE_ROLES_PATH:-/usr/share/ansible/roles}:${HOME}/zuul-jobs/roles"
|
|
ANSIBLE_LIBRARY: "${ANSIBLE_LIBRARY:-/usr/share/ansible/plugins/modules}"
|
|
ANSIBLE_FILTER_PLUGINS: "${ANSIBLE_FILTER_PLUGINS:-/usr/share/ansible/plugins/filter}"
|
|
inventory:
|
|
hosts:
|
|
all:
|
|
hosts:
|
|
centos9:
|
|
ansible_python_interpreter: /usr/bin/python3
|
|
|
|
scenario:
|
|
test_sequence:
|
|
- destroy
|
|
- create
|
|
- prepare
|
|
- converge
|
|
- verify
|
|
- destroy
|
|
|
|
verifier:
|
|
name: testinfra
|