Verifying the TIBCO Mashery Local Cluster on AKS using Kubernetes

To validate the TIBCO Mashery Local cluster deployment, run the following command:
kubectl get pods
Example output:
NAME                              READY     STATUS    RESTARTS   AGE

cache-deploy-0-5888bb448b-m545k   1/1       Running   0          4m

cass-set-0-0                      1/1       Running   0          8m

cm-deploy-0-5654dbdcdc-5957m      1/1       Running   0          6m

log-set-0-0                       1/1       Running   0          6m

mysql-set-0-0                     1/1       Running   0          5m

tm-deploy-0-6bfbbcf67f-8gccp      1/1       Running   0          3m
To test traffic, here are some sample commands:
export LB=`kubectl describe service tm-svc|grep Ingress|awk -F' ' '{print $3}'` && echo $LB
curl -v -H 'Host:api.example.com' http://$LB/v1/api/patient/1234/qatest/testRequestInfo.php?api_key=3bvu8u3p8k5vjxmhrs6tnd6e
Note: All Traffic should go to Load Balancer (going to individual node directly will NOT work.)