# 向 mysql 数据库中添加评分数据库curl -q https://raw.githubusercontent.com/istio/istio/master/samples/bookinfo/src/mysql/mysqldb-init.sql | mysql -u root -ppassword
为了便于直观地查看bookinfo应用程序输出的差异,可以更改使用以下命令生成的评分:
# 查看评分mysql-uroot-ppasswordtest-e"select * from ratings;"+----------+--------+|ReviewID|Rating|+----------+--------+|1|5||2|4|+----------+--------+# 修改评分mysql-uroot-ppasswordtest-e"update ratings set rating=1 where reviewid=1;select * from ratings;"+----------+--------+|ReviewID|Rating|+----------+--------+|1|1||2|4|+----------+--------+
找出将添加到 mesh 中的虚拟机的 IP 地址
在虚拟机上执行:
hostname-I
将 mysql 服务注册到 mesh 中
在一台可以访问 istioctl 命令的主机上,注册该虚拟机和 mysql db service:
istioctlregister-nvmmysqldb<ip-address-of-vm>3306# 示例输出$istioctlregistermysqldb192.168.56.1123306I1015 22:24:33.846492 15465 register.go:44] Registering for service 'mysqldb' ip '192.168.56.112', ports list [{3306 mysql}]
I1015 22:24:33.846550 15465 register.go:49] 0 labels ([]) and 1 annotations ([alpha.istio.io/kubernetes-serviceaccounts=default])
W1015 22:24:33.866410 15465 register.go:123] Got 'services "mysqldb" not found' looking up svc 'mysqldb' in namespace 'default', attempting to create it
W1015 22:24:33.904162 15465 register.go:139] Got 'endpoints "mysqldb" not found' looking up endpoints for 'mysqldb' in namespace 'default', attempting to create them
I1015 22:24:33.910707 15465 register.go:180] No pre existing exact matching ports list found, created new subset {[{192.168.56.112 <nil> nil}] [] [{mysql 3306 }]}
I101522:24:33.92119515465register.go:191]Successfullyupdatedmysqldb,nowwith1endpoints
集群管理
如果你之前在 kubernetes 上运行过 mysql,您需要将 kubernetes 的 mysql service 移除:
kubectldeleteservicemysql
执行 istioctl 来配置 service(在您的 admin 机器上):
istioctlregistermysqlIPmysql:PORT
注意:mysqldb 虚拟机不需要也不应该有特别的 kubernetes 权限。
使用 mysql 服务
bookinfo 中的评分服务将使用机器上的数据库。要验证它是否有效,请创建使用虚拟机上的 mysql db 的评分服务的 v2 版本。然后指定强制评论服务使用评分 v2 版本的路由规则。