Skip to content
Snippets Groups Projects
Commit 470a4cbc authored by Recolic's avatar Recolic :house_with_garden:
Browse files

.

parent bf36c997
No related branches found
No related tags found
No related merge requests found
......@@ -56,10 +56,10 @@ function plugin_after_vm_creat () {
# Redirects 8888 to ANY_MACHINE:22. Backend machine selected randomly. (replacement to inbound-nat-rule as workaround)
debugexec az network lb rule create --resource-group $resgrp --lb-name $LB_NAME --name lb_rule_a --protocol All --frontend-port 8888 --backend-port 22 --backend-pool-name $BE_PL --frontend-ip $FE_IP --protocol Tcp --disable-outbound-snat 1 || exit
if [[ $vmcount != 1 ]]; then
echo "$COLOR_RED_BLD Warning: PublicIp:8888 is mapped to RANDOM_MACHINE:22. Add inbound-nat-rule on az portal manually if required.$COLOR_CLR" 1>&2
echo -e "$COLOR_RED_BLD Warning: PublicIp:8888 is mapped to RANDOM_MACHINE:22. Add inbound-nat-rule on az portal manually if required.$COLOR_CLR" 1>&2
fi
if [[ $outbound_ports_per_vm != 1000 ]]; then
echo "$COLOR_RED_BLD Known-Bug: If you use this script, outbound_ports_per_vm limit doesn't work $COLOR_CLR" 1>&2
echo "$COLOR_RED_BLD But if you delete & manually recreate SLB, inbound SLB doesn't work $COLOR_CLR" 1>&2
echo -e "$COLOR_RED_BLD Known-Bug: If you use this script, outbound_ports_per_vm limit doesn't work $COLOR_CLR" 1>&2
echo -e "$COLOR_RED_BLD But if you delete & manually recreate SLB, inbound SLB doesn't work $COLOR_CLR" 1>&2
fi
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment