From 11cf01fea23d98d726ac315814fba7b21acc9d3d Mon Sep 17 00:00:00 2001 From: Anand Kumar Date: Wed, 15 Nov 2023 06:23:22 -0800 Subject: [PATCH] Use ubuntu Vms for Azure agented tests On Azure RHEL VM, when ExternalNode is added and deleted repeatedly, antrea-agent goes into a weired state where ExternalNode add event is ignored, as agent things there is no change in the ExternalNode interface. Tracking issue on antrea: https://github.com/antrea-io/antrea/issues/5192 https://github.com/antrea-io/antrea/issues/5111 Signed-off-by: Anand Kumar --- hack/terraform/azure/variables.tf | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/hack/terraform/azure/variables.tf b/hack/terraform/azure/variables.tf index 6923531e..f24eecdd 100644 --- a/hack/terraform/azure/variables.tf +++ b/hack/terraform/azure/variables.tf @@ -93,12 +93,12 @@ variable "azure_vm_os_types_agented" { init = "init_script_ubuntu.sh" }, { - name = "rhel-host3" - offer = "RHEL-SAP-HA" - publisher = "RedHat" - sku = "8_4" - init = "init_script_rhel.sh" - } + name = "ubuntu-host3" + offer = "0001-com-ubuntu-server-focal" + publisher = "Canonical" + sku = "20_04-lts-gen2" + init = "init_script_ubuntu.sh" + }, ] }