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/calibration/tasks/aarch64.yaml | 2 - .../ansible/roles/calibration/tasks/main.yaml | 89 ---------------------- .../ansible/roles/calibration/tasks/x86_64.yaml | 35 --------- 3 files changed, 126 deletions(-) delete mode 100644 resources/tools/testbed-setup/ansible/roles/calibration/tasks/aarch64.yaml delete mode 100644 resources/tools/testbed-setup/ansible/roles/calibration/tasks/main.yaml delete mode 100644 resources/tools/testbed-setup/ansible/roles/calibration/tasks/x86_64.yaml (limited to 'resources/tools/testbed-setup/ansible/roles/calibration/tasks') diff --git a/resources/tools/testbed-setup/ansible/roles/calibration/tasks/aarch64.yaml b/resources/tools/testbed-setup/ansible/roles/calibration/tasks/aarch64.yaml deleted file mode 100644 index ca4e75d268..0000000000 --- a/resources/tools/testbed-setup/ansible/roles/calibration/tasks/aarch64.yaml +++ /dev/null @@ -1,2 +0,0 @@ ---- -# file: roles/calibration/tasks/aarch64.yaml diff --git a/resources/tools/testbed-setup/ansible/roles/calibration/tasks/main.yaml b/resources/tools/testbed-setup/ansible/roles/calibration/tasks/main.yaml deleted file mode 100644 index 696f1c9265..0000000000 --- a/resources/tools/testbed-setup/ansible/roles/calibration/tasks/main.yaml +++ /dev/null @@ -1,89 +0,0 @@ ---- -# file: roles/calibration/tasks/main.yaml - -- name: Inst - Update Package Cache (APT) - apt: - update_cache: yes - cache_valid_time: 3600 - when: - - ansible_distribution|lower == 'ubuntu' - tags: - - calibration-inst-prerequisites - -- name: Inst - Prerequisites - package: - name: "{{ packages | flatten(levels=1) }}" - state: latest - tags: - - calibration-inst-prerequisites - -- name: Check CPU Power States - shell: "lscpu" - register: current_lscpu - changed_when: false - tags: - - check-cpu-frequency - -- name: Check CPU Power States - assert: - that: - - "'CPU min MHz' not in current_lscpu.stdout or 'Intel(R) Xeon(R)' not in ansible_processor" - fail_msg: "CPU configuration!" - success_msg: "CPU configuration match." - tags: - - check-cpu-frequency - -- name: Check Kernel Parameters - assert: - that: - - item in ansible_cmdline and grub[item] == ansible_cmdline[item] - fail_msg: "Kernel parameters!" - success_msg: "Kernel parameters match." - loop: "{{ grub.keys()|sort }}" - when: - - grub is defined - tags: - - check-kernel-params - -- name: Check Kernel Version - assert: - that: - - ansible_kernel not in kernel_version_by_distro_by_arch - fail_msg: "Kernel version!" - success_msg: "Kernel version match." - tags: - - check-kernel-version - -- name: Get Spectre Meltdown Checker - get_url: - url: "https://meltdown.ovh" - dest: "/opt/spectre-meltdown-checker.sh" - mode: "744" - tags: - - check-spectre-meltdown - -- name: Run Spectre Meltdown Checker - shell: "/opt/spectre-meltdown-checker.sh --no-color || true" - async: 60 - poll: 0 - ignore_errors: true - register: spectre_meltdown_async - tags: - - check-spectre-meltdown - -- name: "{{ ansible_machine }} Specific" - include_tasks: "{{ ansible_machine }}.yaml" - tags: - - check-machine-specific - - check-jitter-tool - -- name: Check Sync Status - async_status: - jid: "{{ spectre_meltdown_async.ansible_job_id }}" - register: "spectre_meltdown_poll_results" - until: spectre_meltdown_poll_results.finished - retries: 30 - -- debug: var=spectre_meltdown_poll_results.stdout_lines - tags: - - check-spectre-meltdown diff --git a/resources/tools/testbed-setup/ansible/roles/calibration/tasks/x86_64.yaml b/resources/tools/testbed-setup/ansible/roles/calibration/tasks/x86_64.yaml deleted file mode 100644 index 90b1c954b5..0000000000 --- a/resources/tools/testbed-setup/ansible/roles/calibration/tasks/x86_64.yaml +++ /dev/null @@ -1,35 +0,0 @@ ---- -# file: roles/calibration/tasks/x86_64.yaml - -- name: Calibration - Clone PMA Tool - git: - repo: "https://gerrit.fd.io/r/pma_tools" - dest: "{{ pma_directory }}" - tags: - - check-jitter-tool - -- name: Calibration - Compile PMA Tool - raw: "cd {{ pma_directory }}/jitter && make" - tags: - - check-jitter-tool - -- name: Calibration - Run Jitter Tool - shell: "{{ pma_directory }}/jitter/jitter -c {{ jitter_core }} -i {{ jitter_iterations }} -f" - become: yes - async: 60 - poll: 0 - ignore_errors: yes - register: jitter_async - tags: - - check-jitter-tool - -- name: Check sync status - async_status: - jid: "{{ jitter_async.ansible_job_id }}" - register: "jitter_poll_results" - until: jitter_poll_results.finished - retries: 30 - -- debug: var=jitter_poll_results.stdout_lines - tags: - - check-jitter-tool -- cgit