Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

various molecule fixes #836

Merged
merged 4 commits into from
Feb 4, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .ansible-lint
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ exclude_paths:
- .git/
- .github/
- .pre-commit-config.yaml
- molecule/*/molecule.yml
2 changes: 2 additions & 0 deletions molecule/almalinux/molecule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ provisioner:
config_options:
defaults:
callback_whitelist: profile_tasks
env:
ANSIBLE_ROLES_PATH: ~/.cache/molecule/ansible-role-hardening/${MOLECULE_SCENARIO_NAME}/roles:${MOLECULE_PROJECT_DIRECTORY}/..:~/.ansible/roles:/usr/share/ansible/roles:/etc/ansible/roles
playbooks:
converge: ../default/converge.yml
verify: ../default/verify.yml
Expand Down
2 changes: 2 additions & 0 deletions molecule/custom/molecule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ provisioner:
config_options:
defaults:
callback_whitelist: profile_tasks
env:
ANSIBLE_ROLES_PATH: ~/.cache/molecule/ansible-role-hardening/${MOLECULE_SCENARIO_NAME}/roles:${MOLECULE_PROJECT_DIRECTORY}/..:~/.ansible/roles:/usr/share/ansible/roles:/etc/ansible/roles
playbooks:
converge: ../default/converge.yml
verify: ../default/verify.yml
Expand Down
2 changes: 2 additions & 0 deletions molecule/debian/molecule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ provisioner:
config_options:
defaults:
callback_whitelist: profile_tasks
env:
ANSIBLE_ROLES_PATH: ~/.cache/molecule/ansible-role-hardening/${MOLECULE_SCENARIO_NAME}/roles:${MOLECULE_PROJECT_DIRECTORY}/..:~/.ansible/roles:/usr/share/ansible/roles:/etc/ansible/roles
playbooks:
converge: ../default/converge.yml
verify: ../default/verify.yml
Expand Down
2 changes: 2 additions & 0 deletions molecule/default/molecule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ provisioner:
config_options:
defaults:
callback_whitelist: profile_tasks
env:
ANSIBLE_ROLES_PATH: ~/.cache/molecule/ansible-role-hardening/${MOLECULE_SCENARIO_NAME}/roles:${MOLECULE_PROJECT_DIRECTORY}/..:~/.ansible/roles:/usr/share/ansible/roles:/etc/ansible/roles
log: true
inventory:
host_vars:
Expand Down
2 changes: 2 additions & 0 deletions molecule/docker/molecule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ provisioner:
config_options:
defaults:
callback_whitelist: profile_tasks
env:
ANSIBLE_ROLES_PATH: ~/.cache/molecule/ansible-role-hardening/${MOLECULE_SCENARIO_NAME}/roles:${MOLECULE_PROJECT_DIRECTORY}/..:~/.ansible/roles:/usr/share/ansible/roles:/etc/ansible/roles
playbooks:
converge: ../default/converge.yml
verify: ../default/verify.yml
Expand Down
2 changes: 2 additions & 0 deletions molecule/single/molecule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ provisioner:
config_options:
defaults:
callback_whitelist: profile_tasks
env:
ANSIBLE_ROLES_PATH: ~/.cache/molecule/ansible-role-hardening/${MOLECULE_SCENARIO_NAME}/roles:${MOLECULE_PROJECT_DIRECTORY}/..:~/.ansible/roles:/usr/share/ansible/roles:/etc/ansible/roles
playbooks:
converge: ../default/converge.yml
verify: ../default/verify.yml
Expand Down
2 changes: 2 additions & 0 deletions molecule/ubuntu/molecule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ provisioner:
config_options:
defaults:
callback_whitelist: profile_tasks
env:
ANSIBLE_ROLES_PATH: ~/.cache/molecule/ansible-role-hardening/${MOLECULE_SCENARIO_NAME}/roles:${MOLECULE_PROJECT_DIRECTORY}/..:~/.ansible/roles:/usr/share/ansible/roles:/etc/ansible/roles
playbooks:
converge: ../default/converge.yml
verify: ../default/verify.yml
Expand Down
5 changes: 3 additions & 2 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
ansible
ansible-lint
jmespath
molecule-plugins[docker]
molecule-plugins[vagrant]
molecule-plugins[docker]==23.7.0
molecule-plugins[vagrant]==23.7.0
molecule==25.1.0
passlib
Loading