All commands described in this book are run on a MacBook Pro using macOS Mojave, but modifying these commands should be sufficiently straightforward to run them on another platform such as Linux or Windows.
The only new tool required for this chapter is Istio's command-line tool, istioctl. This can be installed using Homebrew with the following command:
brew install istioctl
The source code for this chapter can be found on GitHub at https://github.com/PacktPublishing/Hands-On-Microservices-with-Spring-Boot-and-Spring-Cloud/tree/master/Chapter18.
To be able to run the commands as described in the book, you need to download the source code to a folder and set up an environment variable, $BOOK_HOME, that points to that folder. Examples of sample commands include the following:
export BOOK_HOME=~/Documents/Hands...