==== ansible ==== sudo apt-get install ansible host=127.0.0.1 cat< * https://learnxinyminutes.com/docs/ansible/ * https://github.com/ansible/ansible-modules-core/issues/1674 * https://medium.com/@chanhiuyeung/ansible-playbook-for-network-port-checking-from-host-level-openshift-as-example-fb1960090fdf ==== Molecule ==== mkdir -p molecule-test-folder && cd $_ python3 -m venv .venv source .venv/bin/activate pip install -U setuptools pip 'molecule' molecule --version # molecule, version 2.22 pip install -U setuptools pip 'molecule[docker]' molecule init role -r my-new-role cd my-new-role rm meta/ -rf molecule test --all * https://molecule.readthedocs.io/en/stable/getting-started.html * https://testinfra.readthedocs.io/en/latest/modules.html