]> git.apps.os.sepia.ceph.com Git - ceph-ansible.git/commitdiff
Docker fixes for MDS 761/head
authorDaniel Gryniewicz <dang@redhat.com>
Fri, 6 May 2016 13:46:58 +0000 (09:46 -0400)
committerDaniel Gryniewicz <dang@redhat.com>
Fri, 6 May 2016 13:59:51 +0000 (09:59 -0400)
Fixes to make the ceph-mds role work with Docker

Signed-off-by: Daniel Gryniewicz <dang@redhat.com>
roles/ceph-mds/tasks/docker/pre_requisite.yml

index bfa8d7a725e544e898471b337203a25ebe255c4d..ef0116c34499e403cb6e17f8b456165688a7c179 100644 (file)
@@ -9,6 +9,8 @@
     - docker
     - docker.io
   when: ansible_distribution == 'Ubuntu'
+  tags:
+    with_pkg
 
 - name: install pip and docker on debian
   apt:
@@ -19,6 +21,8 @@
     - python-pip
     - docker-engine
   when: ansible_distribution == 'Debian'
+  tags:
+    with_pkg
 
 - name: install pip and docker on redhat
   yum:
@@ -30,6 +34,8 @@
   when:
     ansible_os_family == 'RedHat' and
     ansible_pkg_mgr == "yum"
+  tags:
+    with_pkg
 
 - name: install pip and docker on redhat
   dnf:
@@ -41,6 +47,8 @@
   when:
     ansible_os_family == 'RedHat' and
     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
   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