Judd Maltin
2020-01-15 d329cede6e8ea407b62699c88b5ddbbbd79d0e3e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/bash
 
# wgets routes created in previously deployed "Hello,OpenShift" app
 
GREEN='\033[0;33m'
NC='\033[0m'
 
x=5
 
ns_prefix="hello-openshift-"
 
for i in $(seq 1 $x); do
        echo -e "${GREEN}Probing app in namespace ""$ns_prefix""$i""${NC}"    
    route=$(oc get route hello-openshift -n "$ns_prefix""$i" -o go-template='{{ .spec.host }}{{ println }}')
    curl http://${route}
done