localIP=$(ip route show default | cut -d " " -f 9)
echo "localIP:"$localIP
+echo ""
if [ "x${1}" == "x" ]; then
echo "No node IP defined, uses the local IP instead."
nodeIP=$localIP
aNum=1000
-
display_help () {
echo "Usage:"
echo " "
echo "Please input the nodeIP and access number"
}
-#svcIP=$(kubectl get svc | grep nginx |grep -i "nodeport" | awk -F'[ ]+' '{print $3}')
-#echo "Service IP:"$svcIP
-#nodePort=$(kubectl get svc | grep nginx |grep -i "nodeport" | awk -F'[ ]+' '{print $5}' | cut -d ":" -f 2 |cut -d "/" -f 1)
-#echo "NodePort:"$nodePort
-
ARGS=`getopt -a -o s:n:c:p:k::h:: -l nodeIP:,number:,serviceIP:,nodePort:,nodeOnly::,help:: -- "$@"`
eval set -- "${ARGS}"
echo "NodePort:"$nodePort
fi
-
accessNum=$((aNum + 0))
-#for i in {1..$(($aNum + 0))}
START=1
END=$aNum
-
if [ "x${nodeOnly}" != "xtrue" ]; then
echo "Now access the service IP $svcIP:80, $aNum times:"
for (( c=$START; c<=$END; c++))