Merge "WIP: Add role to auto install docker on hosts"
[barometer.git] / docker / ansible / roles / install_docker / tasks / centos.yml
1 #Copyright 2018 OPNFV and Intel Corporation
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #     http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14 ---
15
16 - name: install dependencies for docker
17   package:
18      name: "{{ packages }}"
19      state: present
20   vars:
21      packages:
22         - python
23         - yum-utils
24         - device-mapper-persistent-data
25         - lvm2
26
27 - name: set up docker repository
28   command: "yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo"
29
30 - name: install docker-py
31   package:
32      name: python-docker-py
33      state: present
34
35 - name: install docker
36   package:
37      name: docker-ce
38      state: present
39
40 - name: start docker daemon
41   systemd:
42      name: docker
43      daemon_reload: true
44      state: started
45      enabled: true