diff options
Diffstat (limited to 'test/vcpe/healthcheck-k8s.py')
-rwxr-xr-x | test/vcpe/healthcheck-k8s.py | 23 |
1 files changed, 11 insertions, 12 deletions
diff --git a/test/vcpe/healthcheck-k8s.py b/test/vcpe/healthcheck-k8s.py index 0aea3fb9e..0a728a429 100755 --- a/test/vcpe/healthcheck-k8s.py +++ b/test/vcpe/healthcheck-k8s.py @@ -2,9 +2,9 @@ import logging import json -from vcpecommon import * import commands import sys +import subprocess if len(sys.argv) <2: print('namespace not provided') @@ -13,24 +13,23 @@ if len(sys.argv) <2: namespace=sys.argv[1] -logging.basicConfig(level=logging.INFO, format='%(message)s') -common = VcpeCommon() - print('Checking vGMUX REST API from SDNC') -cmd = 'curl -u admin:admin -X GET http://10.0.101.21:8183/restconf/config/ietf-interfaces:interfaces' +cmd = 'curl -s -u admin:admin -X GET http://10.0.101.21:8183/restconf/config/ietf-interfaces:interfaces' ret = commands.getstatusoutput("kubectl -n {0} exec dev-sdnc-sdnc-0 -- bash -c '{1}'".format(namespace,cmd)) sz = ret[-1].split('\n')[-1] -print('\n') -print(sz) +print(json.dumps(json.loads(sz), indent=4)) +print('\n') print('Checking vBRG REST API from SDNC') -cmd = 'curl -u admin:admin -X GET http://10.3.0.2:8183/restconf/config/ietf-interfaces:interfaces' +cmd = 'curl -s -u admin:admin -X GET http://10.3.0.2:8183/restconf/config/ietf-interfaces:interfaces' ret = commands.getstatusoutput("kubectl -n {0} exec dev-sdnc-sdnc-0 -- bash -c '{1}'".format(namespace,cmd)) sz = ret[-1].split('\n')[-1] -print('\n') -print(sz) +print(json.dumps(json.loads(sz), indent=4)) +print('\n') print('Checking SDNC DB for vBRG MAC address') -mac = common.get_brg_mac_from_sdnc() -print(mac) +cmd = "kubectl -n onap exec dev-sdnc-sdnc-db-0 -c sdnc-db -- mysql -usdnctl -pgamma sdnctl -e 'select * from DHCP_MAP;'" +p = subprocess.Popen(cmd, stdout=subprocess.PIPE, shell=True) +(output, error) = p.communicate() +print(output) |