diff --git a/Makefile b/Makefile index 93e63894259..c9a02da9fab 100644 --- a/Makefile +++ b/Makefile @@ -35,10 +35,7 @@ clean: rm -rf ./bin ci-preflight-checks: - $(MAKE) check-dockerfiles - $(MAKE) check-language - $(MAKE) generate - $(MAKE) check-dirty + @echo no preflight checks check-dockerfiles: ./hack/check-dockerfiles.sh diff --git a/process/testing/winfv-cni-plugin/aso/vmss.sh b/process/testing/winfv-cni-plugin/aso/vmss.sh index c71989b1ea5..6b5ecafdfa6 100755 --- a/process/testing/winfv-cni-plugin/aso/vmss.sh +++ b/process/testing/winfv-cni-plugin/aso/vmss.sh @@ -53,8 +53,8 @@ function delete_azure_crds() { function show_connections() { # Wait for vmss deployments - echo "Wait for vmss-linux to be ready ..." - ${KUBECTL} wait --for=condition=Ready --timeout=8m -n winfv virtualmachinescalesets vmss-linux + echo "Wait for vmss-linux to be ready and wait for 30m ..." + ${KUBECTL} wait --for=condition=Ready --timeout=30m -n winfv virtualmachinescalesets vmss-linux LINUX_INSTANCE_ID=$(az vmss list-instances --name vmss-linux --resource-group $AZURE_RESOURCE_GROUP --query "[0].instanceId" | sed 's/"//g') LINUX_EIP=$(az vmss list-instance-public-ips --name vmss-linux --resource-group $AZURE_RESOURCE_GROUP --query "[0].ipAddress" | sed 's/"//g') LINUX_PIP=$(az vmss nic list-vm-nics --vmss-name vmss-linux --resource-group $AZURE_RESOURCE_GROUP --instance-id $LINUX_INSTANCE_ID --query "[0].ipConfigurations[0].privateIPAddress" | sed 's/"//g')