Skip to content

Releases: instrumentisto/ansible-coreos-bootstrap

4.0.0

16 Apr 13:41
c899efe

Choose a tag to compare

3.2.0

08 May 10:14

Choose a tag to compare

2.2.0

08 May 10:08

Choose a tag to compare

3.1.0

01 Feb 14:38
0ec19ce

Choose a tag to compare

3.0.0

11 Nov 16:23
e80770c

Choose a tag to compare

2.1.0

19 Oct 09:37
c84afe5

Choose a tag to compare

2.0.0

28 Nov 10:46

Choose a tag to compare

Changelog

Migration guide

  1. Add become: yes to playbooks which use instrumentisto.coreos-bootstrap role.
    Example:

     - hosts: nodes
       gather_facts: no
    +  become: yes
       roles:
         - instrumentisto.coreos-bootstrap
  2. Correct ansible_python_interpreter variable for your inventory:

    - ansible_python_interpreter: /home/core/bin/python
    + ansible_python_interpreter: /opt/python/bin/python
  3. Remove old installation:

    rm -rf /home/core/bin/pip /home/core/bin/python /home/core/pypy
  4. 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

1.0.0

21 Aug 08:31

Choose a tag to compare

Forked

21 Aug 08:28

Choose a tag to compare

Fork point from upstream repo.