Versions Compared

Key

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

...

6. Verify that client pod is sending requests to servers in the order of assigned weight by running the below bash script in the client service pod

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

...