It appears as though the latest version of Ansible uses Python 3 or perhaps my system is just configured to use Python 3 with Ansible. When running the command
I get an error saying that no module urlparse can be found. According to https://github.com/FriendCode/gittle/issues/49 the urlparse module has been renamed to urllib.parse. Changing roles/openshift-applier/roles/openshift-applier/filter_plugins/applier-filters.py to from urllib.parse import urlparse avoids the issue.
It appears as though the latest version of Ansible uses Python 3 or perhaps my system is just configured to use Python 3 with Ansible. When running the command
ansible-playbook -i inventory/hosts roles/openshift-applier/playbooks/openshift-cluster-seed.yml
I get an error saying that no module
urlparse
can be found. According to https://github.com/FriendCode/gittle/issues/49 theurlparse
module has been renamed tourllib.parse
. Changingroles/openshift-applier/roles/openshift-applier/filter_plugins/applier-filters.py
tofrom urllib.parse import urlparse
avoids the issue.