2015-07-28 23:35:47 +08:00
|
|
|
---
|
2016-02-08 22:25:24 +08:00
|
|
|
- name: install pip and docker on ubuntu
|
2015-11-16 18:47:23 +08:00
|
|
|
apt:
|
2016-02-08 05:30:32 +08:00
|
|
|
name: "{{ item }}"
|
2015-11-16 18:47:23 +08:00
|
|
|
state: present
|
2016-02-08 05:30:32 +08:00
|
|
|
update_cache: yes
|
|
|
|
with_items:
|
|
|
|
- python-pip
|
|
|
|
- docker
|
|
|
|
- docker.io
|
|
|
|
when: ansible_distribution == 'Ubuntu'
|
2016-01-23 03:10:41 +08:00
|
|
|
tags:
|
|
|
|
with_pkg
|
2015-11-16 18:47:23 +08:00
|
|
|
|
2016-02-08 05:30:32 +08:00
|
|
|
- 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'
|
2016-01-23 03:10:41 +08:00
|
|
|
tags:
|
|
|
|
with_pkg
|
2016-02-08 05:30:32 +08:00
|
|
|
|
2016-06-03 23:24:00 +08:00
|
|
|
- name: install epel-release on redhat
|
|
|
|
yum:
|
|
|
|
name: epel-release
|
|
|
|
state: present
|
|
|
|
when: ansible_os_family == 'RedHat'
|
|
|
|
tags:
|
|
|
|
with_pkg
|
|
|
|
|
2016-10-26 16:04:59 +08:00
|
|
|
- name: enable extras repo on centos
|
|
|
|
yum_repository:
|
|
|
|
name: extras
|
|
|
|
state: present
|
|
|
|
enabled: yes
|
2016-10-18 04:44:30 +08:00
|
|
|
when: ansible_distribution == 'CentOS'
|
|
|
|
tags:
|
|
|
|
with_pkg
|
|
|
|
|
2016-06-03 23:24:00 +08:00
|
|
|
- name: install pip on redhat
|
2015-11-16 18:47:23 +08:00
|
|
|
yum:
|
2016-02-08 05:30:32 +08:00
|
|
|
name: "{{ item }}"
|
2015-11-16 18:47:23 +08:00
|
|
|
state: present
|
2016-02-08 05:30:32 +08:00
|
|
|
with_items:
|
|
|
|
- python-pip
|
2016-01-29 02:11:22 +08:00
|
|
|
when:
|
2016-05-09 22:08:33 +08:00
|
|
|
- ansible_os_family == 'RedHat'
|
|
|
|
- ansible_pkg_mgr == "yum"
|
2016-01-23 03:10:41 +08:00
|
|
|
tags:
|
|
|
|
with_pkg
|
2016-01-29 02:11:22 +08:00
|
|
|
|
2016-06-03 23:24:00 +08:00
|
|
|
- name: install docker-engine on redhat
|
|
|
|
yum:
|
2016-02-08 05:30:32 +08:00
|
|
|
name: "{{ item }}"
|
2016-01-29 02:11:22 +08:00
|
|
|
state: present
|
2016-02-08 05:30:32 +08:00
|
|
|
with_items:
|
|
|
|
- docker-engine
|
2016-01-29 02:11:22 +08:00
|
|
|
when:
|
2016-05-09 22:08:33 +08:00
|
|
|
- ansible_os_family == 'RedHat'
|
2016-06-03 23:24:00 +08:00
|
|
|
- ansible_pkg_mgr == "yum"
|
2016-01-23 03:10:41 +08:00
|
|
|
tags:
|
|
|
|
with_pkg
|
2016-06-03 23:24:00 +08:00
|
|
|
failed_when: false
|
2015-11-16 18:47:23 +08:00
|
|
|
|
2016-06-03 23:24:00 +08:00
|
|
|
# for CentOS
|
|
|
|
- name: install docker on redhat
|
2016-01-23 03:10:41 +08:00
|
|
|
yum:
|
2016-06-03 23:24:00 +08:00
|
|
|
name: "{{ item }}"
|
2016-01-23 03:10:41 +08:00
|
|
|
state: present
|
2016-06-03 23:24:00 +08:00
|
|
|
with_items:
|
|
|
|
- docker
|
|
|
|
when:
|
|
|
|
- ansible_os_family == 'RedHat'
|
|
|
|
- ansible_pkg_mgr == "yum"
|
2016-01-23 03:10:41 +08:00
|
|
|
tags:
|
|
|
|
with_pkg
|
2016-06-03 23:24:00 +08:00
|
|
|
failed_when: false
|
2016-01-23 03:10:41 +08:00
|
|
|
|
|
|
|
# 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
|
2015-10-19 11:19:31 +08:00
|
|
|
pip:
|
2016-01-23 03:10:41 +08:00
|
|
|
name: six
|
|
|
|
version: 1.9.0
|
|
|
|
tags:
|
|
|
|
with_pkg
|
|
|
|
|
2016-07-12 18:54:27 +08:00
|
|
|
# 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
|
2016-07-12 20:50:56 +08:00
|
|
|
when: ansible_version['full'] | version_compare('2.1.0.0', '<')
|
2016-07-12 18:54:27 +08:00
|
|
|
|
|
|
|
- name: install docker-py
|
|
|
|
pip:
|
|
|
|
name: docker-py
|
|
|
|
state: latest
|
|
|
|
tags:
|
|
|
|
with_pkg
|
2016-07-12 20:50:56 +08:00
|
|
|
when: ansible_version['full'] | version_compare('2.1.0.0', '>=')
|
2016-07-12 18:54:27 +08:00
|
|
|
|
2016-01-23 03:10:41 +08:00
|
|
|
- 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
|
2016-07-28 22:42:19 +08:00
|
|
|
|
2016-11-28 22:16:56 +08:00
|
|
|
- name: install ntp
|
|
|
|
package:
|
2016-07-28 22:42:19 +08:00
|
|
|
name: ntp
|
|
|
|
state: present
|
|
|
|
when:
|
|
|
|
- ntp_service_enabled
|
|
|
|
tags:
|
|
|
|
with_pkg
|