diff --git a/README.md b/README.md index a9676a8..81b1008 100644 --- a/README.md +++ b/README.md @@ -50,11 +50,12 @@ that any commit will be checked automatically. ### Testing (Molecule) The role is tested with the [Molecule -project](https://molecule.readthedocs.io/en/latest/index.html). By default this -role will be tested with the `podman` driver, but you can easily adapt it to use -`docker` if you prefer. +project](https://ansible.readthedocs.io/projects/molecule/). By default this +role will be tested with the `podman` driver since it's more "systemd +friendly", but you can easily adapt it to use `docker` if you prefer (you will +probably have to run docker containers in privilege mode) -Here is an example how you can test a deployment of MariaDB Server `10.6` +Here is an example how you can test a deployment of MariaDB Server `10.11` packaged by the MariaDB Foundation (MDBF) on `Almalinux 9`: ```console diff --git a/molecule/default/molecule.yml b/molecule/default/molecule.yml index 7d3d141..9739e78 100644 --- a/molecule/default/molecule.yml +++ b/molecule/default/molecule.yml @@ -1,6 +1,6 @@ --- driver: - name: podman + name: docker platforms: - name: instance image: "ghcr.io/fauust/docker-ansible:${MOLECULE_DISTRO:-debian-11}" diff --git a/requirements.txt b/requirements.txt index aa95847..4162e72 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,3 @@ ansible-core molecule -molecule-plugins +molecule-plugins[podman] diff --git a/requirements.yml b/requirements.yml index fee9312..1ff6975 100644 --- a/requirements.yml +++ b/requirements.yml @@ -2,4 +2,3 @@ collections: - name: community.general - name: community.mysql - - name: containers.podman