From df5672b3d9c29b51397f4770eb992c9f3f3955ce Mon Sep 17 00:00:00 2001 From: pmikus Date: Thu, 8 Apr 2021 10:44:18 +0000 Subject: Ansible git move + Better accessibility + Compliant with fdio.infra._function_ - function [pxe|terraform|ansible|vagrant] + dill==0.3.3 also applied on TBs - ci-man to follow today - Docs to be updated in separate patch Signed-off-by: pmikus Change-Id: Iff9eaa29d63044188cc8160db2d9b44b7635782a --- .../ansible/roles/aws/defaults/main.yaml | 2 - .../ansible/roles/aws/handlers/main.yaml | 15 ---- .../ansible/roles/aws/tasks/main.yaml | 93 ---------------------- .../ansible/roles/aws/tasks/ubuntu_bionic.yaml | 10 --- .../ansible/roles/aws/tasks/ubuntu_focal.yaml | 10 --- 5 files changed, 130 deletions(-) delete mode 100644 resources/tools/testbed-setup/ansible/roles/aws/defaults/main.yaml delete mode 100644 resources/tools/testbed-setup/ansible/roles/aws/handlers/main.yaml delete mode 100644 resources/tools/testbed-setup/ansible/roles/aws/tasks/main.yaml delete mode 100644 resources/tools/testbed-setup/ansible/roles/aws/tasks/ubuntu_bionic.yaml delete mode 100644 resources/tools/testbed-setup/ansible/roles/aws/tasks/ubuntu_focal.yaml (limited to 'resources/tools/testbed-setup/ansible/roles/aws') diff --git a/resources/tools/testbed-setup/ansible/roles/aws/defaults/main.yaml b/resources/tools/testbed-setup/ansible/roles/aws/defaults/main.yaml deleted file mode 100644 index d4ea91afd4..0000000000 --- a/resources/tools/testbed-setup/ansible/roles/aws/defaults/main.yaml +++ /dev/null @@ -1,2 +0,0 @@ ---- -# file: roles/aws/defaults/main.yaml diff --git a/resources/tools/testbed-setup/ansible/roles/aws/handlers/main.yaml b/resources/tools/testbed-setup/ansible/roles/aws/handlers/main.yaml deleted file mode 100644 index 7363dc2c34..0000000000 --- a/resources/tools/testbed-setup/ansible/roles/aws/handlers/main.yaml +++ /dev/null @@ -1,15 +0,0 @@ ---- -# file: roles/aws/handlers/main.yaml - -- name: Reboot server - reboot: - reboot_timeout: 3600 - tags: - - reboot-server - -- name: AWS - Reload systemd-modules - systemd: - name: "systemd-modules-load" - state: "restarted" - tags: - - reload-systemd-modules diff --git a/resources/tools/testbed-setup/ansible/roles/aws/tasks/main.yaml b/resources/tools/testbed-setup/ansible/roles/aws/tasks/main.yaml deleted file mode 100644 index 2d209762c3..0000000000 --- a/resources/tools/testbed-setup/ansible/roles/aws/tasks/main.yaml +++ /dev/null @@ -1,93 +0,0 @@ ---- -# file: roles/aws/tasks/main.yaml - -- name: Edit repositories - include_tasks: "{{ ansible_distribution|lower }}_{{ ansible_distribution_release }}.yaml" - tags: - - aws-edit-repo - -- name: Get vfio-pci With WC Patcher - get_url: - url: "https://github.com/amzn/amzn-drivers/raw/master/userspace/dpdk/enav2-vfio-patch/get-vfio-with-wc.sh" - dest: "/opt/get-vfio-with-wc.sh" - mode: "744" - tags: - - aws-vfio-patch - -- name: Create vfio-pci Patch Directory - file: - path: "/opt/patches/" - state: "directory" - tags: - - aws-vfio-patch - -- name: Get vfio-pci WC Patch >=4.10 - get_url: - url: "https://github.com/amzn/amzn-drivers/raw/master/userspace/dpdk/enav2-vfio-patch/patches/linux-4.10-vfio-wc.patch" - dest: "/opt/patches/linux-4.10-vfio-wc.patch" - mode: "744" - tags: - - aws-vfio-patch - -- name: Get vfio-pci WC Patch >=5.8 - get_url: - url: "https://github.com/amzn/amzn-drivers/raw/master/userspace/dpdk/enav2-vfio-patch/patches/linux-5.8-vfio-wc.patch" - dest: "/opt/patches/linux-5.8-vfio-wc.patch" - mode: "744" - tags: - - aws-vfio-patch - -- name: Compile vfio-pci With WC Patch - shell: "/bin/bash /opt/get-vfio-with-wc.sh" - tags: - - aws-vfio-patch - -- name: Load Kernel Modules By Default - lineinfile: - path: "/etc/modules" - state: "present" - line: "{{ item }}" - with_items: - - "vfio-pci" - - "igb_uio" - tags: - - aws-load-kernel-modules - -- name: Add Kernel Modules Options (igb_uio) - lineinfile: - path: "/etc/modprobe.d/igb_uio.conf" - state: "present" - line: "{{ item }}" - create: "yes" - with_items: - - "options igb_uio wc_activate=1" - tags: - - aws-load-kernel-modules - -- name: Add Kernel Modules Options (vfio-pci) - lineinfile: - path: "/etc/modprobe.d/vfio-noiommu.conf" - state: "present" - line: "{{ item }}" - create: "yes" - with_items: - - "options vfio enable_unsafe_noiommu_mode=1" - tags: - - aws-load-kernel-modules - -- name: Reload systemd-modules - systemd: - name: "systemd-modules-load" - state: "restarted" - tags: - - aws-reload-systemd-modules - -- name: Performance Tuning - Adjust nr_hugepages - sysctl: - name: "vm.nr_hugepages" - value: "8192" - state: "present" - sysctl_file: "/etc/sysctl.d/90-csit.conf" - reload: "yes" - tags: - - aws-set-hugepages diff --git a/resources/tools/testbed-setup/ansible/roles/aws/tasks/ubuntu_bionic.yaml b/resources/tools/testbed-setup/ansible/roles/aws/tasks/ubuntu_bionic.yaml deleted file mode 100644 index bca1cf5095..0000000000 --- a/resources/tools/testbed-setup/ansible/roles/aws/tasks/ubuntu_bionic.yaml +++ /dev/null @@ -1,10 +0,0 @@ ---- -# file: roles/aws/tasks/ubuntu_bionic.yaml.yaml - -- name: Enable deb-src APT Repository - apt_repository: - repo: "deb-src http://archive.ubuntu.com/ubuntu bionic main" - state: "present" - update_cache: yes - tags: - - aws-enable-src-repo diff --git a/resources/tools/testbed-setup/ansible/roles/aws/tasks/ubuntu_focal.yaml b/resources/tools/testbed-setup/ansible/roles/aws/tasks/ubuntu_focal.yaml deleted file mode 100644 index a8cc56c0c4..0000000000 --- a/resources/tools/testbed-setup/ansible/roles/aws/tasks/ubuntu_focal.yaml +++ /dev/null @@ -1,10 +0,0 @@ ---- -# file: roles/aws/tasks/ubuntu_focal.yaml.yaml - -- name: Enable deb-src APT Repository - apt_repository: - repo: "deb-src http://archive.ubuntu.com/ubuntu focal main" - state: "present" - update_cache: yes - tags: - - aws-enable-src-repo -- cgit 1.2.3-korg