35 lines
552 B
YAML
35 lines
552 B
YAML
---
|
|
dependency:
|
|
name: shell
|
|
command: echo "no dependencies"
|
|
|
|
lint: |
|
|
set -e
|
|
yamllint .
|
|
ansible-lint
|
|
|
|
driver:
|
|
name: docker
|
|
|
|
platforms:
|
|
- name: instance
|
|
image: geerlingguy/docker-rockylinux9-ansible
|
|
command: /usr/sbin/init
|
|
cgroupns_mode: host
|
|
privileged: true
|
|
volumes:
|
|
- /sys/fs/cgroup:/sys/fs/cgroup:rw
|
|
pre_build_image: true
|
|
|
|
provisioner:
|
|
name: ansible
|
|
config_options:
|
|
defaults:
|
|
verbosity: 0
|
|
interpreter_python: /usr/bin/python3.9
|
|
|
|
verifier:
|
|
name: testinfra
|
|
options:
|
|
verbose: true
|