From 9b87bc2230963448436d6f260808eb0e09dfdf09 Mon Sep 17 00:00:00 2001 From: Tomas Alexy Date: Mon, 22 Feb 2021 09:43:54 +0100 Subject: [PATCH] Infra: Azure - file cleanup Signed-off-by: Tomas Alexy Change-Id: I8b97123711a76bf8851f6c4997e819d79364b83b --- resources/tools/testbed-setup/ansible/site.yaml | 2 ++ .../tools/testbed-setup/ansible/site_azure.yaml | 8 ----- resources/tools/testbed-setup/ansible/sut.yaml | 37 ++++++++++++++++++++ .../tools/testbed-setup/ansible/sut_azure.yaml | 31 ----------------- resources/tools/testbed-setup/ansible/tg.yaml | 39 ++++++++++++++++++++++ .../tools/testbed-setup/ansible/tg_azure.yaml | 33 ------------------ terraform-ci-infra/3n_azure_fsv2/main.tf | 12 +++---- 7 files changed, 84 insertions(+), 78 deletions(-) delete mode 100644 resources/tools/testbed-setup/ansible/site_azure.yaml delete mode 100644 resources/tools/testbed-setup/ansible/sut_azure.yaml delete mode 100644 resources/tools/testbed-setup/ansible/tg_azure.yaml diff --git a/resources/tools/testbed-setup/ansible/site.yaml b/resources/tools/testbed-setup/ansible/site.yaml index 1d755dbae0..4436c21b18 100644 --- a/resources/tools/testbed-setup/ansible/site.yaml +++ b/resources/tools/testbed-setup/ansible/site.yaml @@ -5,11 +5,13 @@ tags: - tg - tg_aws + - tg_azure - import_playbook: sut.yaml tags: - sut - sut_aws + - sut_azure - import_playbook: vpp_device.yaml tags: diff --git a/resources/tools/testbed-setup/ansible/site_azure.yaml b/resources/tools/testbed-setup/ansible/site_azure.yaml deleted file mode 100644 index c60e8b8f30..0000000000 --- a/resources/tools/testbed-setup/ansible/site_azure.yaml +++ /dev/null @@ -1,8 +0,0 @@ ---- -# file: site_azure.yaml - -- import_playbook: tg_azure.yaml - tags: tg - -- import_playbook: sut_azure.yaml - tags: sut diff --git a/resources/tools/testbed-setup/ansible/sut.yaml b/resources/tools/testbed-setup/ansible/sut.yaml index 972c56b72b..afa4d40ef5 100644 --- a/resources/tools/testbed-setup/ansible/sut.yaml +++ b/resources/tools/testbed-setup/ansible/sut.yaml @@ -41,6 +41,12 @@ remote_user: testuser become: yes become_user: root + gather_facts: false + pre_tasks: + - name: Gathering Facts + gather_facts: + tags: + - always roles: - role: user_add tags: user_add @@ -62,3 +68,34 @@ # resources/tools/testbed-setup/ansible/roles/calibration/tasks/main.yaml # - role: calibration # tags: calibration + +- hosts: sut_azure + become: yes + become_user: root + gather_facts: false + pre_tasks: + - name: Gathering Facts + gather_facts: + tags: + - always + roles: + - role: user_add + tags: user_add + - role: common + tags: common + - role: docker + tags: docker + - role: vpp + tags: vpp + - role: azure + tags: azure + - role: iperf + tags: iperf + - role: dpdk + tags: dpdk + - role: cleanup + tags: cleanup + # TODO: 'Check Kernel Parameters' failing in + # resources/tools/testbed-setup/ansible/roles/calibration/tasks/main.yaml + # - role: calibration + # tags: calibration diff --git a/resources/tools/testbed-setup/ansible/sut_azure.yaml b/resources/tools/testbed-setup/ansible/sut_azure.yaml deleted file mode 100644 index eb1b001ca2..0000000000 --- a/resources/tools/testbed-setup/ansible/sut_azure.yaml +++ /dev/null @@ -1,31 +0,0 @@ ---- -# file: sut_azure.yaml - -- hosts: sut - become: yes - become_user: root - gather_facts: false - pre_tasks: - - name: Gathering Facts - gather_facts: - tags: - - always - roles: - - role: user_add - tags: user_add - - role: common - tags: common - - role: docker - tags: docker - - role: vpp - tags: vpp - - role: azure - tags: azure - - role: iperf - tags: iperf - - role: dpdk - tags: dpdk - - role: cleanup - tags: cleanup -# - role: calibration -# tags: calibration diff --git a/resources/tools/testbed-setup/ansible/tg.yaml b/resources/tools/testbed-setup/ansible/tg.yaml index 3de55e62e8..2b18b5d85d 100644 --- a/resources/tools/testbed-setup/ansible/tg.yaml +++ b/resources/tools/testbed-setup/ansible/tg.yaml @@ -41,6 +41,12 @@ remote_user: testuser become: yes become_user: root + gather_facts: false + pre_tasks: + - name: Gathering Facts + gather_facts: + tags: + - always roles: - role: user_add tags: user_add @@ -66,3 +72,36 @@ # resources/tools/testbed-setup/ansible/roles/calibration/tasks/main.yaml # - role: calibration # tags: calibration + +- hosts: tg_azure + become: yes + become_user: root + gather_facts: false + pre_tasks: + - name: Gathering Facts + gather_facts: + tags: + - always + roles: + - role: user_add + tags: user_add + - role: common + tags: common + - role: azure + tags: azure + - role: docker + tags: docker + - role: tg + tags: tg + - role: iperf + tags: iperf + - role: trex + tags: trex + - role: ab + tags: ab + - role: cleanup + tags: cleanup + # TODO: 'Check Kernel Parameters' failing in + # resources/tools/testbed-setup/ansible/roles/calibration/tasks/main.yaml + # - role: calibration + # tags: calibration \ No newline at end of file diff --git a/resources/tools/testbed-setup/ansible/tg_azure.yaml b/resources/tools/testbed-setup/ansible/tg_azure.yaml deleted file mode 100644 index 3713dc845f..0000000000 --- a/resources/tools/testbed-setup/ansible/tg_azure.yaml +++ /dev/null @@ -1,33 +0,0 @@ ---- -# file: tg_azure.yaml - -- hosts: tg - become: yes - become_user: root - gather_facts: false - pre_tasks: - - name: Gathering Facts - gather_facts: - tags: - - always - roles: - - role: user_add - tags: user_add - - role: common - tags: common - - role: azure - tags: azure - - role: docker - tags: docker - - role: tg - tags: tg - - role: iperf - tags: iperf - - role: trex - tags: trex - - role: ab - tags: ab - - role: cleanup - tags: cleanup -# - role: calibration -# tags: calibration diff --git a/terraform-ci-infra/3n_azure_fsv2/main.tf b/terraform-ci-infra/3n_azure_fsv2/main.tf index 9f6739e676..87d02aa923 100644 --- a/terraform-ci-infra/3n_azure_fsv2/main.tf +++ b/terraform-ci-infra/3n_azure_fsv2/main.tf @@ -487,10 +487,10 @@ resource "null_resource" "deploy_tg" { provisioner "ansible" { plays { playbook { - file_path = "../../testbed-setup/ansible/site_azure.yaml" + file_path = "../../testbed-setup/ansible/site.yaml" force_handlers = true } - hosts = ["tg"] + hosts = ["tg_azure"] extra_vars = { ansible_python_interpreter = "/usr/bin/python3" azure = true @@ -511,10 +511,10 @@ resource "null_resource" "deploy_dut1" { provisioner "ansible" { plays { playbook { - file_path = "../../testbed-setup/ansible/site_azure.yaml" + file_path = "../../testbed-setup/ansible/site.yaml" force_handlers = true } - hosts = ["sut"] + hosts = ["sut_azure"] extra_vars = { ansible_python_interpreter = "/usr/bin/python3" azure = true @@ -535,10 +535,10 @@ resource "null_resource" "deploy_dut2" { provisioner "ansible" { plays { playbook { - file_path = "../../testbed-setup/ansible/site_azure.yaml" + file_path = "../../testbed-setup/ansible/site.yaml" force_handlers = true } - hosts = ["sut"] + hosts = ["sut_azure"] extra_vars = { ansible_python_interpreter = "/usr/bin/python3" azure = true -- 2.16.6