Bookinfo with a Virtual Machine
Bookinfo running on VMs
Before you begin
Setup Istio by following the instructions in the .
Deploy the Bookinfo sample application (in the namespace).
Create a VM and add it to the
vm
namespace, following the steps in .
We will first install MySQL on the VM, and configure it as a backend for the ratings service. All commands below should be run on the VM.
Set up authentication:
$ cat <<EOF | sudo mysql
# Grant access to root
GRANT ALL PRIVILEGES ON *.* TO 'root'@'localhost' IDENTIFIED BY 'password' WITH GRANT OPTION;
# Grant root access to other IPs
CREATE USER 'root'@'%' IDENTIFIED BY 'password';
GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' WITH GRANT OPTION;
quit;
EOF
$ sudo systemctl restart mysql
You can find details of configuring MySQL at .
On the VM add ratings database to mysql.
$ mysql -u root -ppassword < mysqldb-init.sql
To make it easy to visually inspect the difference in the output of the Bookinfo application, you can change the ratings that are generated by using the following commands to inspect the ratings:
and to change the ratings
$ mysql -u root -ppassword test -e "update ratings set rating=1 where reviewid=1;select * from ratings;"
+----------+--------+
| ReviewID | Rating |
+----------+--------+
| 1 | 1 |
| 2 | 4 |
+----------+--------+
Expose the mysql service to the mesh
When the virtual machine is started, it will automatically be registered into the mesh. However, just like when creating a Pod, we still need to create a Service before we can easily access it.
$ cat <<EOF | kubectl apply -f - -n vm
apiVersion: v1
kind: Service
labels:
app: mysqldb
spec:
ports:
- port: 3306
name: tcp
selector:
app: mysqldb
EOF
Create route rules that will force Bookinfo to use the ratings back end:
$ kubectl apply -n bookinfo -f @samples/bookinfo/networking/virtual-service-ratings-mysql-vm.yaml@
You can verify the output of the Bookinfo application is showing 1 star from Reviewer1 and 4 stars from Reviewer2 or change the ratings on your VM and see the results.
Reaching Kubernetes services from the virtual machine
In the above example, we treated our virtual machine as only a server. We can also seamlessly call Kubernetes services from our virtual machine:
$ curl productpage.bookinfo:9080
...
...
Istio’s automatically configures DNS for the virtual machine, allowing us to make calls to Kubernetes hostnames.