Jeff Geerling

Results 1854 comments of Jeff Geerling

Please see the Kubernetes role documentation: https://github.com/geerlingguy/ansible-role-kubernetes I don't really maintain this collection, unfortunately... it is a lot of labor to try to synchronize the collection with the roles which...

It looks like the issue is that those .git files are used to track the git submodules that I use in this collection and https://github.com/geerlingguy/ansible-collection-php_roles, since I maintain the roles...

Note that what I currently do is add this to my instructions: https://github.com/geerlingguy/mac-dev-playbook#installation > Run the following command to add Python 3 to your $PATH: `export PATH="$HOME/Library/Python/3.8/bin:/opt/homebrew/bin:$PATH"` And in my...

(Alternatively, I could ditch `with_flattened` and use `| flatten` with a loop and a combine... don't want to do that unless necessary though. See: https://github.com/ansible/ansible/blob/3e9943bc5e7a9cd393757aa8100d7fed80bd316e/docs/docsite/rst/user_guide/shared_snippets/with2loop.txt#L62-L77).

It was a problem that the `community.general` collection wasn't present inside the ansible-test environment, so Ansible couldn't use the `with_flattened` plugin.

@Bart97 - Unfortunately I haven't really updated this collection in a while, mostly because I'm still not using it anywhere (I still use the dependent roles directly).

@Bart97 - That's one other downside with collections—roles can't depend on them (and collections can't depend on roles either)... In my case, I always install Ansible via Pip (so `pip3...

Can you test if a task like the following works? ```yaml - name: Run the PHP Versions role. include_role: name: geerlingguy.php_roles.php_versions ``` And also, what version of Ansible are you...

Also document how to run tests locally in the README under 'Development' (there's a TODO there right now).

That setup (if not using molecule) is... extremely ambitious because `ansible-test` doesn't allow dependent role installation (I'd have to do this manually), doesn't clean up between integration tests (I'd need...