Fix local CSIT deployment 98/28598/3
authorTomas Alexy <tomas.alexy@pantheon.tech>
Fri, 28 Aug 2020 13:34:54 +0000 (15:34 +0200)
committerPeter Mikus <pmikus@cisco.com>
Fri, 4 Sep 2020 05:55:15 +0000 (05:55 +0000)
Change-Id: I6ccf3cc11b4343ebcf02f30a01eddb9204ba53ee
Signed-off-by: Tomas Alexy <tomas.alexy@pantheon.tech>
resources/tools/vagrant/Vagrantfile
resources/tools/vagrant/ansible/roles/csit/defaults/main.yml
resources/tools/vagrant/ansible/roles/csit/tasks/main.yml

index 3771fea..1c30719 100644 (file)
@@ -85,9 +85,9 @@ Vagrant.configure("2") do |config|
 
     config.vm.define "centos8", autostart: false do |centos8|
         # Base box definition, currently using
-        #  Unofficial Centos8 (as currently there is no offical build)
-        centos8.vm.box = "geerlingguy/centos8"
-        centos8.vm.box_version = "1.0.2"
+        #  Official CentOS8 v1905.1
+        centos8.vm.box = "centos/8"
+        centos8.vm.box_version = "1905.1"
         centos8.vm.box_check_update = false
 
         # Virtualbox machine configuration
index e390adb..7a8999c 100644 (file)
@@ -21,6 +21,7 @@ csit_packages_by_distro:
     - 'gcc'
     - 'gcc-c++'
     - 'gdb'
+    - 'git'
     - 'glibc-devel'
     - 'libpcap-devel'
     - 'libtool'
index 64a4872..6f226fd 100644 (file)
@@ -1,30 +1,63 @@
 ---
 # file: csit/tasks/main.yml
 
-# TODO: Temporarily disabling due to Centos8 not having netplan.
-#       Finding better solution via udev requires some work and testing.
-#- name: Upload config to rename network interfaces
-#  copy:
-#    src: 'files/99-vppdevice.yaml'
-#    dest: '/etc/netplan/99-vppdevice.yaml'
-#    owner: 'root'
-#    group: 'root'
-#    mode: 0644
-#- name: Apply network config changes
-#  command: '/usr/sbin/netplan apply'
-
-- name: Centos8 install epel repositories
+# CentOS 8 specific
+- name: CentOS - Install epel repositories
   dnf:
     name:
       - 'epel-release'
   when:
     - ansible_distribution|lower == 'centos'
 
-- name: Centos8 enable epel repositories
-  command: 'dnf config-manager --set-enabled PowerTools'
+- name: CentOS - Enable PowerTools
+  command: >
+      dnf config-manager
+      --set-enabled PowerTools
   when:
     - ansible_distribution|lower == 'centos'
 
+# NOTE: containerd.io >1.2.0-3 requirement disabled by RH
+#       Unable to install current docker version as of now
+#       Using docker-ce-3:18.09.1-3.el7
+- name: CentOS - Add docker-ce repo
+  command: >
+      dnf config-manager
+      --add-repo=https://download.docker.com/linux/centos/docker-ce.repo
+  when:
+    - ansible_distribution|lower == 'centos'
+
+- name: CentOS - Install docker-ce
+  dnf:
+    name:
+      - 'docker-ce-3:18.09.1-3.el7'
+  when:
+    - ansible_distribution|lower == 'centos'
+
+# Ubuntu specific
+- name: Ubuntu - Add docker-ce GPG key
+  apt_key:
+    url: 'https://download.docker.com/linux/ubuntu/gpg'
+  when:
+    - ansible_distribution|lower == 'ubuntu'
+
+- name: Ubuntu - Add docker-ce repo
+  apt_repository:
+    repo: 'deb https://download.docker.com/linux/ubuntu {{ ansible_distribution_release }} stable'
+    filename: 'docker'
+    mode: 644
+  when:
+      - ansible_distribution|lower == 'ubuntu'
+
+- name: Ubuntu - Install docker-ce
+  apt:
+    name:
+      - 'docker-ce'
+      - 'containerd.io'
+      - 'docker-ce-cli'
+  when:
+    - ansible_distribution|lower == 'ubuntu'
+
+# General
 - name: Install required system tools and packages
   package:
     name: "{{ csit_packages | join(',') }}"
     sysctl_file: '/etc/sysctl.d/90-csit.conf'
     reload: 'yes'
 
-- name: Install docker-ce
-  command: |
-      curl -fsSL https://get.docker.com -o get-docker.sh &&
-      sudo sh get-docker.sh
-
 - name: "Add user for running tests: {{ csit.test_user.name }}"
   user:
     name: '{{ csit.test_user.name }}'
@@ -56,6 +84,7 @@
     path: '/etc/sudoers.d/{{ csit.test_user.name }}'
     line: '{{ csit.test_user.name }} ALL=(ALL) NOPASSWD:ALL'
     create: 'yes'
+    mode: 660
 
 - name: Add vagrant user to docker group
   user:
     accept_hostkey: yes
     version: '{{ csit.repository.version }}'
 
-- name: Install and update pip and virtualenv
-  pip:
-    name:
-      - 'virtualenv'
-    state: 'latest'
-
 - name: Prepare python virtual environmant for CSIT
   become_user: vagrant
   command: '/usr/bin/virtualenv --python=/usr/bin/python3 {{ csit.home }}/env'