#79 add molecule-docker support

This commit is contained in:
Alejandro Blanco Lopez 2021-08-20 15:21:51 +02:00
parent 665d89beb0
commit 92e30ec9ac
3 changed files with 5 additions and 0 deletions

View File

@ -3,6 +3,9 @@ All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/) and [Keep a changelog](https://github.com/olivierlacan/keep-a-changelog). This project adheres to [Semantic Versioning](http://semver.org/) and [Keep a changelog](https://github.com/olivierlacan/keep-a-changelog).
## Unreleased ## Unreleased
### Added
- *[#79](https://github.com/idealista/cookiecutter-ansible-role/issues/79) Add molecule-docker support* @blalop
## [2.7.0](https://github.com/idealista/cookiecutter-ansible-role/tree/2.7.0) ## [2.7.0](https://github.com/idealista/cookiecutter-ansible-role/tree/2.7.0)
### [Full Changelog](https://github.com/idealista/cookiecutter-ansible-role/compare/2.6.1...2.7.0) ### [Full Changelog](https://github.com/idealista/cookiecutter-ansible-role/compare/2.6.1...2.7.0)
### Added ### Added

View File

@ -10,6 +10,7 @@
"ansible_version": "", "ansible_version": "",
"molecule_version": "", "molecule_version": "",
"python_docker_version": "", "python_docker_version": "",
"molecule_docker_version": "",
"ansible_lint_version":"", "ansible_lint_version":"",
"license":"Apache 2.0", "license":"Apache 2.0",
"galaxy_tag_1":"example_tag1", "galaxy_tag_1":"example_tag1",

View File

@ -1,4 +1,5 @@
ansible=={{ cookiecutter.ansible_version }} ansible=={{ cookiecutter.ansible_version }}
molecule=={{ cookiecutter.molecule_version }} molecule=={{ cookiecutter.molecule_version }}
docker=={{ cookiecutter.python_docker_version }} docker=={{ cookiecutter.python_docker_version }}
molecule-docker=={{ cookiecutter.molecule_docker_version }}
ansible-lint=={{ cookiecutter.ansible_lint_version }} ansible-lint=={{ cookiecutter.ansible_lint_version }}