Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Do not merge] Update vmss scripts for win-cni fv #9695

Open
wants to merge 2 commits into
base: release-v3.28
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions process/testing/winfv-cni-plugin/aso/vmss.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand Down
Loading