Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagebash
titleTrafficdistribution
linenumberstrue
#!/bin/bash
COUNTER=0
while [ $COUNTER -lt 10 ]; do
	curl -v service01.bar.svc.cluster.local/headers
	sleep 2
done


NOTE - Although the service running in external cluster can be accessed by following the steps above, the failover mechanism is not yet supported by ISTIO. 

IN PROGRESS......