solo-io / workshops

Apache License 2.0
126 stars 72 forks source link

Get started with Istio - multiline command for better readability #168

Open find-arka opened 1 year ago

find-arka commented 1 year ago

Make the for loop a multiline command to improve readability

Location: instruqt > main> get-started-istio/05-control-traffic/assignment.md

for i in {1..10}
do
curl -s --cacert ./labs/02/certs/ca/root-ca.crt -H "Host: istioinaction.io" \
    https://istioinaction.io:$SECURE_INGRESS_PORT  \
    --resolve istioinaction.io:$SECURE_INGRESS_PORT:$GATEWAY_IP | \
    grep 'Hello From Purchase History'
done