记一次使用K8S启动的禅道首页显示MySQL错误问题
使用K8S启动的禅道在一次断电重启之后登录首页提示如下
Base table or view not found: 1932 Table 'zentao.zt_lang' doesn't exist in engine in /apps/zentao/li
Pod运行正常,登录Pod查看表确实不存在
#> mysql
#> use zentao
#> select * from zentao.zt_lang;
ERROR 1146 (42S02): Table 'zentao.zt_lang' doesn't exist
解决方法
删除Pod重启后正常,表也存在了
故障原因未知