Update ansible scripts to use py3 for Ubuntu and Fedora 93/68493/2
authorEmma Foley <efoley@redhat.com>
Wed, 18 Sep 2019 16:56:49 +0000 (17:56 +0100)
committerEmma Foley <efoley@redhat.com>
Wed, 2 Oct 2019 19:44:17 +0000 (20:44 +0100)
Signed-off-by: Emma Foley <efoley@redhat.com>
Change-Id: Ia62933a4b824f1280a693fc8004d29c67dc5e2ac

docker/ansible/roles/install_docker/tasks/fedora.yml [new file with mode: 0644]
docker/ansible/roles/install_docker/tasks/main.yml
docker/ansible/roles/install_docker/tasks/ubuntu.yml

diff --git a/docker/ansible/roles/install_docker/tasks/fedora.yml b/docker/ansible/roles/install_docker/tasks/fedora.yml
new file mode 100644 (file)
index 0000000..56eebd5
--- /dev/null
@@ -0,0 +1,47 @@
+#Copyright 2019 Red Hat
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+---
+
+- name: Set Python interpreter
+  set_fact: ansible_python_interpreter=/usr/bin/python3
+
+- name: install dependencies for docker
+  package:
+     name: "{{ packages }}"
+     state: present
+  vars:
+     packages:
+        - python3-dnf
+        - python3
+        - libselinux-python
+
+- name: set up docker repository
+  command: "dnf config-manager --add-repo https://download.docker.com/linux/fedora/docker-ce.repo && dnf makecache"
+
+- name: install docker-py
+  package:
+     name: python3-docker
+     state: present
+
+- name: install docker
+  package:
+     name: docker-ce
+     state: present
+
+- name: start docker daemon
+  systemd:
+     name: docker
+     daemon_reload: true
+     state: started
+     enabled: true
index 7e015bb..ba35656 100644 (file)
   import_tasks: ubuntu.yml
   when: ansible_distribution == "Ubuntu"
 
+- name: install docker for fedora
+  tags:
+    - install_docker
+  import_tasks: fedora.yml
+  when: ansible_distribution == "Fedora"
+
 - name: install docker for centos
   tags:
      - install_docker
index 4415687..f3aa81b 100644 (file)
 # limitations under the License.
 ---
 
+- name: set Python interpreter
+  set_fact: ansible_python_interpreter=/usr/bin/python3
+
 - name: update package manager cache
   tags:
      - cache_update
   package:
      update_cache: yes
 
-- name: install python
+- name: install python3
   package:
-     name: python
+     name: python3
      state: present
 
-- name: install python-pip
+- name: install python3-pip
   package:
-     name: python-pip
+     name: python3-pip
      state: present
 
 - name: install docker-py