---
ceph_docker_registry: docker.io
+ceph_mon_docker_enable_centos_extra_repo: false
---
- include: system_checks.yml
+
+
+- name: check if it is atomic host
+ stat: path=/run/ostree-booted
+ register: stat_ostree
+ always_run: true
+
+- name: set fact for using atomic host
+ set_fact:
+ is_atomic: '{{ stat_ostree.stat.exists }}'
+
+- include: ./pre_requisites/prerequisites.yml
+ when: not is_atomic
--- /dev/null
+---
+# To install docker on debian
+- name: allow apt to use a repository over https (debian)
+ package:
+ name: "{{ item }}"
+ state: present
+ update_cache: yes
+ with_items:
+ - apt-transport-https
+ - ca-certificates
+ - curl
+ - software-properties-common
+ when: ansible_distribution == 'Debian'
+ tags:
+ with_pkg
+
+- name: add docker's gpg key
+ apt_key:
+ url: https://apt.dockerproject.org/gpg
+ state: present
+ when: ansible_distribution == 'Debian'
+
+- name: add docker and debian testing repository
+ apt_repository:
+ repo: "{{ item }}"
+ state: present
+ with_items:
+ - "deb https://apt.dockerproject.org/repo/ debian-{{ ansible_distribution_release }} main"
+ - "deb http://http.us.debian.org/debian/ testing contrib main"
+ when: ansible_distribution == 'Debian'
+
+- name: install pip from testing on debian
+ package:
+ name: python-pip
+ state: present
+ default_release: testing
+ update_cache: yes
+ when: ansible_distribution == 'Debian'
+ tags:
+ with_pkg
+
+- name: install docker-py via pip for debian
+ pip:
+ name: docker-py
+ state: latest
+ tags:
+ with_pkg
+ when: ansible_distribution == 'Debian'
+
+- name: install docker on debian
+ package:
+ name: docker-engine
+ state: present
+ update_cache: yes
+ when: ansible_distribution == 'Debian'
+ tags:
+ with_pkg
+
+# NOTE (jimcurtis): need at least version 1.9.0 of six or we get:
+# re:NameError: global name 'DEFAULT_DOCKER_API_VERSION' is not defined
+- name: install six via pip
+ pip:
+ name: six
+ version: 1.9.0
+ when: ansible_distribution == 'Debian'
+ tags:
+ with_pkg
--- /dev/null
+---
+# Manage debian in a separate file because of specificities
+- include: debian_prerequisites.yml
+ when: ansible_distribution == 'Debian'
+
+- name: install docker on ubuntu
+ package:
+ name: docker.io
+ state: present
+ update_cache: yes
+ when: ansible_distribution == 'Ubuntu'
+ tags:
+ with_pkg
+
+# ensure extras enabled for docker
+- name: enable extras on centos
+ yum_repository:
+ name: extras
+ state: present
+ enabled: yes
+ when:
+ - ansible_distribution == 'CentOS'
+ - ceph_mon_docker_enable_centos_extra_repo
+ tags:
+ with_pkg
+
+- name: install python-six
+ package:
+ name: python-six
+ state: present
+ update_cache: yes
+ when: ansible_distribution != 'Debian'
+ tags:
+ with_pkg
+
+- name: install python-docker-py on red hat / centos
+ package:
+ name: python-docker-py
+ state: present
+ when: ansible_os_family == 'RedHat'
+ tags:
+ with_pkg
+
+- name: install python-docker on ubuntu
+ package:
+ name: python-docker
+ state: present
+ when: ansible_distribution == 'Ubuntu'
+ tags:
+ with_pkg
+
+- name: install docker on red hat / centos
+ package:
+ name: docker
+ state: present
+ when: ansible_os_family == 'RedHat'
+ tags:
+ with_pkg
+
+- name: pause after docker install before starting (on openstack vms)
+ pause: seconds=5
+ when: ceph_docker_on_openstack
+ tags:
+ with_pkg
+
+- name: start docker service
+ service:
+ name: docker
+ state: started
+ enabled: yes
+ tags:
+ with_pkg
+
+- name: install ntp
+ package:
+ name: ntp
+ state: present
+ when: ntp_service_enabled
+ tags:
+ with_pkg
failed_when: false
always_run: true
-- name: check if it is Atomic host
- stat: path=/run/ostree-booted
- register: stat_ostree
- always_run: true
-
-- name: set fact for using Atomic host
- set_fact:
- is_atomic: '{{ stat_ostree.stat.exists }}'
-
- include: checks.yml
when:
- ceph_health.rc != 0
- not "{{ rolling_update | default(false) }}"
-- include: pre_requisite.yml
- when: not is_atomic
-
- include: "{{ playbook_dir }}/roles/ceph-common/tasks/misc/ntp_atomic.yml"
when:
- is_atomic
+++ /dev/null
----
-- name: install pip and docker on ubuntu
- apt:
- name: "{{ item }}"
- state: present
- update_cache: yes
- with_items:
- - python-pip
- - docker
- - docker.io
- when: ansible_distribution == 'Ubuntu'
- tags:
- with_pkg
-
-- name: install pip and docker on debian
- apt:
- name: "{{ item }}"
- state: present
- update_cache: yes
- with_items:
- - python-pip
- - docker-engine
- when: ansible_distribution == 'Debian'
- tags:
- with_pkg
-
-# install epel for pip
-- name: install epel on redhat
- yum:
- name: "{{ item }}"
- state: present
- with_items:
- - epel-release
- when:
- - ansible_os_family == 'RedHat'
- - ansible_pkg_mgr == "yum"
- tags:
- with_pkg
- failed_when: false
-
-- name: enable extras repo for centos
- yum_repository:
- name: extras
- state: present
- enabled: yes
- when: ansible_distribution == 'CentOS'
- tags:
- with_pkg
-
-- name: install pip on redhat
- yum:
- name: "{{ item }}"
- state: present
- with_items:
- - python-pip
- when:
- - ansible_os_family == 'RedHat'
- - ansible_pkg_mgr == "yum"
- tags:
- with_pkg
-
-- name: install docker-engine on redhat
- yum:
- name: "{{ item }}"
- state: present
- with_items:
- - docker-engine
- when:
- - ansible_os_family == 'RedHat'
- - ansible_pkg_mgr == "yum"
- tags:
- with_pkg
- failed_when: false
-
-# for CentOS
-- name: install docker on redhat
- yum:
- name: "{{ item }}"
- state: present
- with_items:
- - docker
- when:
- - ansible_os_family == 'RedHat'
- - ansible_pkg_mgr == "yum"
- tags:
- with_pkg
- failed_when: false
-
-# docker package could be docker-enginer or docker
-- name: install pip and docker on redhat
- dnf:
- name: "{{ item }}"
- state: present
- with_items:
- - python-pip
- - docker-engine
- when:
- - ansible_os_family == 'RedHat'
- - ansible_pkg_mgr == "dnf"
- tags:
- with_pkg
-
-- name: start docker service
- service:
- name: docker
- state: started
- enabled: yes
- tags:
- with_pkg
-
-# NOTE (jimcurtis): need at least version 1.9.0 of six or we get:
-# re:NameError: global name 'DEFAULT_DOCKER_API_VERSION' is not defined
-- name: install six
- pip:
- name: six
- version: 1.9.0
- tags:
- with_pkg
-
-# NOTE (leseb): for version 1.1.0 because https://github.com/ansible/ansible-modules-core/issues/1227
-- name: install docker-py
- pip:
- name: docker-py
- version: 1.1.0
- tags:
- with_pkg
- when: ansible_version['full'] | version_compare('2.1.0.0', '<')
-
-- name: install docker-py
- pip:
- name: docker-py
- state: latest
- tags:
- with_pkg
- when: ansible_version['full'] | version_compare('2.1.0.0', '>=')
-
-- name: install ntp
- package:
- name: ntp
- state: present
- when:
- - ntp_service_enabled
- tags:
- with_pkg
mon_docker_privileged: false
mon_docker_net_host: true
ceph_config_keys: [] # DON'T TOUCH ME
-ceph_mon_docker_enable_centos_extra_repo: false
failed_when: false
always_run: true
-- name: check if it is Atomic host
- stat: path=/run/ostree-booted
- register: stat_ostree
- always_run: true
-
-- name: set fact for using Atomic host
- set_fact:
- is_atomic: '{{ stat_ostree.stat.exists }}'
-
- include: checks.yml
when:
- ceph_health.rc != 0
- not mon_containerized_deployment_with_kv
- not "{{ rolling_update | default(false) }}"
-- include: pre_requisite.yml
- when: not is_atomic
-
- include: "{{ playbook_dir }}/roles/ceph-common/tasks/misc/ntp_atomic.yml"
when:
- is_atomic
+++ /dev/null
----
-- name: install pip and docker on ubuntu
- apt:
- name: "{{ item }}"
- state: present
- update_cache: yes
- with_items:
- - python-pip
- - docker
- - docker.io
- when: ansible_distribution == 'Ubuntu'
- tags:
- with_pkg
-
-- name: install pip and docker on debian
- apt:
- name: "{{ item }}"
- state: present
- update_cache: yes
- with_items:
- - python-pip
- - docker-engine
- when: ansible_distribution == 'Debian'
- tags:
- with_pkg
-
-# install epel for pip
-- name: install epel-release on redhat
- yum:
- name: epel-release
- state: present
- when: ansible_os_family == 'RedHat'
- tags:
- with_pkg
-
-# ensure extras enabled for docker
-- name: enable extras on centos
- yum_repository:
- name: extras
- state: present
- enabled: yes
- when:
- - ansible_distribution == 'CentOS'
- - ceph_mon_docker_enable_centos_extra_repo
- tags:
- with_pkg
-
-- name: install pip on redhat
- yum:
- name: "{{ item }}"
- state: present
- with_items:
- - python-pip
- when:
- - ansible_os_family == 'RedHat'
- - ansible_pkg_mgr == "yum"
- tags:
- with_pkg
-
-- name: install docker-engine on redhat
- yum:
- name: "{{ item }}"
- state: present
- with_items:
- - docker-engine
- when:
- - ansible_os_family == 'RedHat'
- - ansible_pkg_mgr == "yum"
- tags:
- with_pkg
- failed_when: false
-
-# for CentOS
-- name: install docker on redhat
- yum:
- name: "{{ item }}"
- state: present
- with_items:
- - docker
- when:
- - ansible_os_family == 'RedHat'
- - ansible_pkg_mgr == "yum"
- tags:
- with_pkg
- failed_when: false
-
-- name: install pip and docker on redhat (dnf)
- dnf:
- name: "{{ item }}"
- state: present
- with_items:
- - python-pip
- - docker-engine
- - docker
- when:
- - ansible_os_family == 'RedHat'
- - ansible_pkg_mgr == "dnf"
- tags:
- with_pkg
-
-
-# NOTE (jimcurtis): need at least version 1.9.0 of six or we get:
-# re:NameError: global name 'DEFAULT_DOCKER_API_VERSION' is not defined
-- name: install six
- pip:
- name: six
- version: 1.9.0
- tags:
- with_pkg
-
-- name: pause after docker install before starting (on openstack vms)
- pause: seconds=5
- when: ceph_docker_on_openstack
- tags:
- with_pkg
-
-- name: start docker service
- service:
- name: docker
- state: started
- enabled: yes
- tags:
- with_pkg
-
-# NOTE (leseb): for version 1.1.0 because https://github.com/ansible/ansible-modules-core/issues/1227
-- name: install docker-py
- pip:
- name: docker-py
- version: 1.1.0
- tags:
- with_pkg
- when: ansible_version['full'] | version_compare('2.1.0.0', '<')
-
-- name: install docker-py
- pip:
- name: docker-py
- state: latest
- tags:
- with_pkg
- when: ansible_version['full'] | version_compare('2.1.0.0', '>=')
-
-- name: install ntp
- package:
- name: ntp
- state: present
- when:
- - ntp_service_enabled
- tags:
- with_pkg
failed_when: false
always_run: true
-- name: check if it is Atomic host
- stat: path=/run/ostree-booted
- register: stat_ostree
- always_run: true
-
-- name: set fact for using Atomic host
- set_fact:
- is_atomic: '{{ stat_ostree.stat.exists }}'
-
- include: checks.yml
when:
ceph_health.rc != 0 and
not mon_containerized_deployment_with_kv
-- include: pre_requisite.yml
- when: not is_atomic
-
- include: "{{ playbook_dir }}/roles/ceph-common/tasks/misc/ntp_atomic.yml"
when:
- is_atomic
+++ /dev/null
----
-- name: install pip and docker on ubuntu
- apt:
- name: "{{ item }}"
- state: present
- update_cache: yes
- with_items:
- - python-pip
- - docker
- - docker.io
- when: ansible_distribution == 'Ubuntu'
- tags:
- with_pkg
-
-- name: install pip and docker on debian
- apt:
- name: "{{ item }}"
- state: present
- update_cache: yes
- with_items:
- - python-pip
- - docker-engine
- when: ansible_distribution == 'Debian'
- tags:
- with_pkg
-
-- name: enable extras repo for centos
- yum_repository:
- name: extras
- state: present
- enabled: yes
- when: ansible_distribution == 'CentOS'
- tags:
- with_pkg
-
-- name: install pip and docker on redhat
- yum:
- name: "{{ item }}"
- state: present
- with_items:
- - python-pip
- - docker-engine
- when:
- ansible_os_family == 'RedHat' and
- ansible_pkg_mgr == "yum"
- tags:
- with_pkg
-
-- name: install pip and docker on redhat
- dnf:
- name: "{{ item }}"
- state: present
- with_items:
- - python-pip
- - docker-engine
- when:
- ansible_os_family == 'RedHat' and
- ansible_pkg_mgr == "dnf"
- tags:
- with_pkg
-
-- name: install epel-release on redhat
- yum:
- name: epel-release
- state: present
- when: ansible_os_family == 'RedHat'
- tags:
- with_pkg
-
-# NOTE (jimcurtis): need at least version 1.9.0 of six or we get:
-# re:NameError: global name 'DEFAULT_DOCKER_API_VERSION' is not defined
-- name: install six
- pip:
- name: six
- version: 1.9.0
- tags:
- with_pkg
-
-# NOTE (leseb): for version 1.1.0 because https://github.com/ansible/ansible-modules-core/issues/1227
-- name: install docker-py
- pip:
- name: docker-py
- version: 1.1.0
- tags:
- with_pkg
- when: ansible_version['full'] | version_compare('2.1.0.0', '<')
-
-- name: install docker-py
- pip:
- name: docker-py
- state: latest
- tags:
- with_pkg
- when: ansible_version['full'] | version_compare('2.1.0.0', '>=')
-
-- name: pause after docker install before starting (on openstack vms)
- pause: seconds=5
- when: ceph_docker_on_openstack
- tags:
- with_pkg
-
-- name: start docker service
- service:
- name: docker
- state: started
- enabled: yes
- tags:
- with_pkg
-
-- name: install ntp
- package:
- name: ntp
- state: present
- when:
- - ntp_service_enabled
- tags:
- with_pkg
- not osd_containerized_deployment_with_kv
- not "{{ rolling_update | default(false) }}"
-- name: check if it is Atomic host
- stat: path=/run/ostree-booted
- register: stat_ostree
- always_run: true
-
-- name: set fact for using Atomic host
- set_fact:
- is_atomic: '{{ stat_ostree.stat.exists }}'
-
-- include: pre_requisite.yml
- when: not is_atomic
-
- include: "{{ playbook_dir }}/roles/ceph-common/tasks/misc/ntp_atomic.yml"
when:
- is_atomic
+++ /dev/null
----
-- name: install pip and docker on ubuntu
- apt:
- name: "{{ item }}"
- state: present
- update_cache: yes
- with_items:
- - python-pip
- - docker
- - docker.io
- when: ansible_distribution == 'Ubuntu'
- tags:
- with_pkg
-
-- name: install pip and docker on debian
- apt:
- name: "{{ item }}"
- state: present
- update_cache: yes
- with_items:
- - python-pip
- - docker-engine
- when: ansible_distribution == 'Debian'
- tags:
- with_pkg
-
-- name: install epel-release on redhat
- yum:
- name: epel-release
- state: present
- when: ansible_os_family == 'RedHat'
- tags:
- with_pkg
-
-- name: install pip on redhat
- yum:
- name: "{{ item }}"
- state: present
- with_items:
- - python-pip
- when:
- - ansible_os_family == 'RedHat'
- - ansible_pkg_mgr == "yum"
- tags:
- with_pkg
-
-- name: install docker-engine on redhat
- yum:
- name: "{{ item }}"
- state: present
- with_items:
- - docker-engine
- when:
- - ansible_os_family == 'RedHat'
- - ansible_pkg_mgr == "yum"
- tags:
- with_pkg
- failed_when: false
-
-# for CentOS
-- name: install docker on redhat
- yum:
- name: "{{ item }}"
- state: present
- with_items:
- - docker
- when:
- - ansible_os_family == 'RedHat'
- - ansible_pkg_mgr == "yum"
- tags:
- with_pkg
- failed_when: false
-
-- name: install pip and docker on redhat
- dnf:
- name: "{{ item }}"
- state: present
- with_items:
- - python-pip
- - docker-engine
- - docker
- when:
- - ansible_os_family == 'RedHat'
- - ansible_pkg_mgr == "dnf"
- tags:
- with_pkg
-
-
-# NOTE (jimcurtis): need at least version 1.9.0 of six or we get:
-# re:NameError: global name 'DEFAULT_DOCKER_API_VERSION' is not defined
-- name: install six
- pip:
- name: six
- version: 1.9.0
- tags:
- with_pkg
-
-- name: pause after docker install before starting (on openstack vms)
- pause: seconds=5
- when: ceph_docker_on_openstack
- tags:
- with_pkg
-
-- name: start docker service
- service:
- name: docker
- state: started
- enabled: yes
- tags:
- with_pkg
-
-# NOTE (leseb): for version 1.1.0 because https://github.com/ansible/ansible-modules-core/issues/1227
-- name: install docker-py
- pip:
- name: docker-py
- version: 1.1.0
- tags:
- with_pkg
- when: ansible_version['full'] | version_compare('2.1.0.0', '<')
-
-- name: install docker-py
- pip:
- name: docker-py
- state: latest
- tags:
- with_pkg
- when: ansible_version['full'] | version_compare('2.1.0.0', '>=')
-
-- name: install ntp
- package:
- name: ntp
- state: present
- when:
- - ntp_service_enabled
- tags:
- with_pkg
failed_when: false
always_run: true
-- name: check if it is Atomic host
- stat: path=/run/ostree-booted
- always_run: true
- register: stat_ostree
-
-- name: set fact for using Atomic host
- set_fact:
- is_atomic='{{ stat_ostree.stat.exists }}'
-
- include: checks.yml
when: ceph_health.rc != 0
-- include: pre_requisite.yml
- when: not is_atomic
-
- include: "{{ playbook_dir }}/roles/ceph-common/tasks/misc/ntp_atomic.yml"
when:
- is_atomic
+++ /dev/null
----
-- name: install pip and docker on ubuntu
- apt:
- name: "{{ item }}"
- state: present
- update_cache: yes
- with_items:
- - python-pip
- - docker
- - docker.io
- when: ansible_distribution == 'Ubuntu'
- tags:
- with_pkg
-
-- name: install pip and docker on debian
- apt:
- name: "{{ item }}"
- state: present
- update_cache: yes
- with_items:
- - python-pip
- - docker-engine
- when: ansible_distribution == 'Debian'
- tags:
- with_pkg
-
-# install epel for pip
-- name: install epel on redhat
- yum:
- name: "{{ item }}"
- state: present
- with_items:
- - epel-release
- when:
- - ansible_os_family == 'RedHat'
- - ansible_pkg_mgr == "yum"
- tags:
- with_pkg
- failed_when: false
-
-- name: enable extras repo for centos
- yum_repository:
- name: extras
- state: present
- enabled: yes
- when: ansible_distribution == 'CentOS'
- tags:
- with_pkg
-
-- name: install pip on redhat
- yum:
- name: "{{ item }}"
- state: present
- with_items:
- - python-pip
- when:
- - ansible_os_family == 'RedHat'
- - ansible_pkg_mgr == "yum"
- tags:
- with_pkg
-
-- name: install docker-engine on redhat
- yum:
- name: "{{ item }}"
- state: present
- with_items:
- - docker-engine
- when:
- - ansible_os_family == 'RedHat'
- - ansible_pkg_mgr == "yum"
- tags:
- with_pkg
- failed_when: false
-
-# for CentOS
-- name: install docker on redhat
- yum:
- name: "{{ item }}"
- state: present
- with_items:
- - docker
- when:
- - ansible_os_family == 'RedHat'
- - ansible_pkg_mgr == "yum"
- tags:
- with_pkg
- failed_when: false
-
-# docker package could be docker-enginer or docker
-- name: install pip and docker on redhat
- dnf:
- name: "{{ item }}"
- state: present
- with_items:
- - python-pip
- - docker-engine
- when:
- - ansible_os_family == 'RedHat'
- - ansible_pkg_mgr == "dnf"
- tags:
- with_pkg
-
-- name: start docker service
- service:
- name: docker
- state: started
- enabled: yes
- tags:
- with_pkg
-
-# NOTE (jimcurtis): need at least version 1.9.0 of six or we get:
-# re:NameError: global name 'DEFAULT_DOCKER_API_VERSION' is not defined
-- name: install six
- pip:
- name: six
- version: 1.9.0
- tags:
- with_pkg
-
-# NOTE (leseb): for version 1.1.0 because https://github.com/ansible/ansible-modules-core/issues/1227
-- name: install docker-py
- pip:
- name: docker-py
- version: 1.1.0
- tags:
- with_pkg
- when: ansible_version['full'] | version_compare('2.1.0.0', '<')
-
-- name: install docker-py
- pip:
- name: docker-py
- state: latest
- tags:
- with_pkg
- when: ansible_version['full'] | version_compare('2.1.0.0', '>=')
-
-- name: install ntp
- package:
- name: ntp
- state: present
- when:
- - ntp_service_enabled
- tags:
- with_pkg
---
-- name: check if it is Atomic host
- stat: path=/run/ostree-booted
- register: stat_ostree
- always_run: true
-
-- name: set fact for using Atomic host
- set_fact:
- is_atomic: '{{ stat_ostree.stat.exists }}'
-
-- include: pre_requisite.yml
- when: not is_atomic
-
- include: "{{ playbook_dir }}/roles/ceph-common/tasks/misc/ntp_atomic.yml"
when:
- is_atomic
+++ /dev/null
----
-- name: install pip and docker on ubuntu
- apt:
- name: "{{ item }}"
- state: present
- update_cache: yes
- with_items:
- - python-pip
- - docker
- - docker.io
- when: ansible_distribution == 'Ubuntu'
- tags:
- with_pkg
-
-- name: install pip and docker on debian
- apt:
- name: "{{ item }}"
- state: present
- update_cache: yes
- with_items:
- - python-pip
- - docker-engine
- when: ansible_distribution == 'Debian'
- tags:
- with_pkg
-
-- name: install epel-release on redhat
- yum:
- name: epel-release
- state: present
- when: ansible_os_family == 'RedHat'
- tags:
- with_pkg
-
-- name: enable extras repo on centos
- yum_repository:
- name: extras
- state: present
- enabled: yes
- when: ansible_distribution == 'CentOS'
- tags:
- with_pkg
-
-- name: install pip on redhat
- yum:
- name: "{{ item }}"
- state: present
- with_items:
- - python-pip
- when:
- - ansible_os_family == 'RedHat'
- - ansible_pkg_mgr == "yum"
- tags:
- with_pkg
-
-- name: install docker-engine on redhat
- yum:
- name: "{{ item }}"
- state: present
- with_items:
- - docker-engine
- when:
- - ansible_os_family == 'RedHat'
- - ansible_pkg_mgr == "yum"
- tags:
- with_pkg
- failed_when: false
-
-# for CentOS
-- name: install docker on redhat
- yum:
- name: "{{ item }}"
- state: present
- with_items:
- - docker
- when:
- - ansible_os_family == 'RedHat'
- - ansible_pkg_mgr == "yum"
- tags:
- with_pkg
- failed_when: false
-- name: install pip and docker on redhat
- dnf:
- name: "{{ item }}"
- state: present
- with_items:
- - python-pip
- - docker-engine
- when:
- - ansible_os_family == 'RedHat'
- - ansible_pkg_mgr == "dnf"
- tags:
- with_pkg
-
-# NOTE (jimcurtis): need at least version 1.9.0 of six or we get:
-# re:NameError: global name 'DEFAULT_DOCKER_API_VERSION' is not defined
-- name: install six
- pip:
- name: six
- version: 1.9.0
- tags:
- with_pkg
-
-# NOTE (leseb): for version 1.1.0 because https://github.com/ansible/ansible-modules-core/issues/1227
-- name: install docker-py
- pip:
- name: docker-py
- version: 1.1.0
- tags:
- with_pkg
- when: ansible_version['full'] | version_compare('2.1.0.0', '<')
-
-- name: install docker-py
- pip:
- name: docker-py
- state: latest
- tags:
- with_pkg
- when: ansible_version['full'] | version_compare('2.1.0.0', '>=')
-
-- name: pause after docker install before starting (on openstack vms)
- pause: seconds=5
- when: ceph_docker_on_openstack
- tags:
- with_pkg
-
-- name: start docker service
- service:
- name: docker
- state: started
- enabled: yes
- tags:
- with_pkg
-
-- name: install ntp
- package:
- name: ntp
- state: present
- when:
- - ntp_service_enabled
- tags:
- with_pkg
failed_when: false
always_run: true
-- name: check if it is Atomic host
- stat: path=/run/ostree-booted
- always_run: true
- register: stat_ostree
-
-- name: set fact for using Atomic host
- set_fact:
- is_atomic: '{{ stat_ostree.stat.exists }}'
-
- include: checks.yml
when:
- ceph_health.rc != 0
- not "{{ rolling_update | default(false) }}"
-- include: pre_requisite.yml
- when: not is_atomic
-
- include: "{{ playbook_dir }}/roles/ceph-common/tasks/misc/ntp_atomic.yml"
when:
- is_atomic
+++ /dev/null
----
-- name: install pip and docker on ubuntu
- apt:
- name: "{{ item }}"
- state: present
- update_cache: yes
- with_items:
- - python-pip
- - docker
- - docker.io
- when: ansible_distribution == 'Ubuntu'
- tags:
- with_pkg
-
-- name: install pip and docker on debian
- apt:
- name: "{{ item }}"
- state: present
- update_cache: yes
- with_items:
- - python-pip
- - docker-engine
- when: ansible_distribution == 'Debian'
- tags:
- with_pkg
-
-- name: install epel-release on redhat
- yum:
- name: epel-release
- state: present
- when: ansible_os_family == 'RedHat'
- tags:
- with_pkg
-
-- name: enable extras repo on centos
- yum_repository:
- name: extras
- state: present
- enabled: yes
- when: ansible_distribution == 'CentOS'
- tags:
- with_pkg
-
-- name: install pip on redhat
- yum:
- name: "{{ item }}"
- state: present
- with_items:
- - python-pip
- when:
- - ansible_os_family == 'RedHat'
- - ansible_pkg_mgr == "yum"
- tags:
- with_pkg
-
-- name: install docker-engine on redhat
- yum:
- name: "{{ item }}"
- state: present
- with_items:
- - docker-engine
- when:
- - ansible_os_family == 'RedHat'
- - ansible_pkg_mgr == "yum"
- tags:
- with_pkg
- failed_when: false
-
-# for CentOS
-- name: install docker on redhat
- yum:
- name: "{{ item }}"
- state: present
- with_items:
- - docker
- when:
- - ansible_os_family == 'RedHat'
- - ansible_pkg_mgr == "yum"
- tags:
- with_pkg
- failed_when: false
-
-# NOTE (jimcurtis): need at least version 1.9.0 of six or we get:
-# re:NameError: global name 'DEFAULT_DOCKER_API_VERSION' is not defined
-- name: install six
- pip:
- name: six
- version: 1.9.0
- tags:
- with_pkg
-
-# NOTE (leseb): for version 1.1.0 because https://github.com/ansible/ansible-modules-core/issues/1227
-- name: install docker-py
- pip:
- name: docker-py
- version: 1.1.0
- tags:
- with_pkg
- when: ansible_version['full'] | version_compare('2.1.0.0', '<')
-
-- name: install docker-py
- pip:
- name: docker-py
- state: latest
- tags:
- with_pkg
- when: ansible_version['full'] | version_compare('2.1.0.0', '>=')
-
-- name: pause after docker install before starting (on openstack vms)
- pause: seconds=5
- when: ceph_docker_on_openstack
- tags:
- with_pkg
-
-- name: start docker service
- service:
- name: docker
- state: started
- enabled: yes
- tags:
- with_pkg
-
-- name: install ntp
- package:
- name: ntp
- state: present
- when:
- - ntp_service_enabled
- tags:
- with_pkg