HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

molecule — Molecule helps testing Ansible roles. More information: <https://docs.ansible.com/projects/molecule/

Submitted by: @import:tldr-pages··
0
Viewed 0 times
ansiblecommandhelpsclimoleculerolestesting

Problem

How to use the molecule command: Molecule helps testing Ansible roles. More information: <https://docs.ansible.com/projects/molecule/usage/>.

Solution

molecule — Molecule helps testing Ansible roles. More information: <https://docs.ansible.com/projects/molecule/usage/>.

Create a new Ansible role:
molecule init role --role-name {{role_name}}


Run tests:
molecule test


Start the instance:
molecule create


Configure the instance:
molecule converge


List scenarios of the instance:
molecule matrix converge


Log in into the instance:
molecule login

Code Snippets

Create a new Ansible role

molecule init role --role-name {{role_name}}

Run tests

molecule test

Start the instance

molecule create

Configure the instance

molecule converge

List scenarios of the instance

molecule matrix converge

Context

tldr-pages: common/molecule

Revisions (0)

No revisions yet.