Releases: instrumentisto/ansible-coreos-bootstrap
Releases · instrumentisto/ansible-coreos-bootstrap
4.0.0
3.2.0
2.2.0
3.1.0
3.0.0
2.1.0
2.0.0
Migration guide
-
Add
become: yesto playbooks which useinstrumentisto.coreos-bootstraprole.
Example:- hosts: nodes gather_facts: no + become: yes roles: - instrumentisto.coreos-bootstrap -
Correct
ansible_python_interpretervariable for your inventory:- ansible_python_interpreter: /home/core/bin/python + ansible_python_interpreter: /opt/python/bin/python
-
Remove old installation:
rm -rf /home/core/bin/pip /home/core/bin/python /home/core/pypy
-
Install required pip packages again if you need them.
Example:- hosts: nodes become: yes tasks: - pip: name: docker-py state: present executable: /opt/python/bin/pip