Azure ACS - Delete Load Balancer? -
i deployed swarm acs , load balancer auto deployed also.
i'm using application gateway ssl offloading , want point @ swarm agents.
however, since swarm agents configured backend pool load balancer, can't make swarm agents backend pool application gateway.
i don't need/want load balancer, can't delete since has backend pool associated is.
this same story gui or cli deployed acs'.
i asked same question on @ microsoft, directed me here.
thoughts?
thanks reading.
there 2 solutions. second solution better since can deploy modern swarm mode cluster:
for acs deployed swarm cluster, in following order make following modifications:
- remove loadbalancerbackendaddresspools relation ship in vmss object
- remove loadbalancer
- remove public ip associated loadbalancer.
use acs-engine, https://github.com/azure/acs-engine, deploy cluster without load balancer using model such following:
{ "apiversion": "vlabs", "properties": { "orchestratorprofile": { "orchestratortype": "swarmmode" }, "masterprofile": { "count": 3, "dnsprefix": "", "vmsize": "standard_d2_v2" }, "agentpoolprofiles": [ { "name": "agentpublic", "count": 3, "vmsize": "standard_d2_v2" } ], "linuxprofile": { "adminusername": "azureuser", "ssh": { "publickeys": [ { "keydata": "" } ] } } } }
Comments
Post a Comment