view master/bin/internal/parse_load_balance.py @ 68:1f04bce6ead7 default tip

use basefile instead of transferfile, and remove cleanup: belt and braces wrt lossage of sac_schemes.py in 15% of 1000_k3, this as used in a_2
author Henry S. Thompson <ht@markup.co.uk>
date Thu, 04 Jun 2020 20:44:44 +0000
parents a7637c994964
children
line wrap: on
line source

#!/usr/bin/env python3
#Parses the output of az network lb show --resource-group $resource --name ${name}LB -o json
#Prints a table of instanceId and port.
import sys
import json
if len(sys.argv) == 2:
  ip = " " + sys.argv[1]
else:
  ip = ""
for m in json.load(sys.stdin)['inboundNatRules']:
  print(m['name'].split('.')[-1] + ' ' + str(m['frontendPort']) + ip)