c2b8eb71a4
* Update Molecule to `3.2.0` and Docker Python SDK to `4.4.0`. * Add Alpine `3.12` to supported platforms for NGINX Plus. * Remove Alpine `3.9` and CentOS/RHEL `6` from supported platforms due to EOL.
35 lines
809 B
YAML
35 lines
809 B
YAML
---
|
|
driver:
|
|
name: docker
|
|
lint: |
|
|
set -e
|
|
yamllint .
|
|
ansible-lint --force-color
|
|
platforms:
|
|
- name: alpine-3.10
|
|
image: alpine:3.10
|
|
dockerfile: ../common/Dockerfile.j2
|
|
privileged: true
|
|
volumes:
|
|
- "/sys/fs/cgroup:/sys/fs/cgroup:rw"
|
|
command: "/sbin/init"
|
|
- name: alpine-3.11
|
|
image: alpine:3.11
|
|
dockerfile: ../common/Dockerfile.j2
|
|
privileged: true
|
|
volumes:
|
|
- "/sys/fs/cgroup:/sys/fs/cgroup:rw"
|
|
command: "/sbin/init"
|
|
- name: alpine-3.12
|
|
image: alpine:3.12
|
|
dockerfile: ../common/Dockerfile.j2
|
|
privileged: true
|
|
volumes:
|
|
- "/sys/fs/cgroup:/sys/fs/cgroup:rw"
|
|
command: "/sbin/init"
|
|
provisioner:
|
|
name: ansible
|
|
playbooks:
|
|
converge: ../common/playbooks/default_converge.yml
|
|
verify: ../common/playbooks/default_verify.yml
|