Idea开启Run DashBoard配置
dashboard
General-purpose web UI for Kubernetes clusters
项目地址:https://gitcode.com/gh_mirrors/da/dashboard

·
找到.idea文件下的workspace.xml,并找到RunDashboard
<component name="RunDashboard"> <option name="ruleStates"> <list> <RuleState> <option name="name" value="ConfigurationTypeDashboardGroupingRule" /> </RuleState> <RuleState> <option name="name" value="StatusDashboardGroupingRule" /> </RuleState> </list> </option> </component>
加入如下配置:
<option name="configurationTypes"> <set> <option value="SpringBootApplicationConfigurationType" /> </set> </option>
这样RunDashboard自动就弹出来了
最终配置如下:
<component name="RunDashboard"> <option name="configurationTypes"> <set> <option value="SpringBootApplicationConfigurationType" /> </set> </option> <option name="ruleStates"> <list> <RuleState> <option name="name" value="ConfigurationTypeDashboardGroupingRule" /> </RuleState> <RuleState> <option name="name" value="StatusDashboardGroupingRule" /> </RuleState> </list> </option> </component>




General-purpose web UI for Kubernetes clusters
最近提交(Master分支:1 个月前 )
2f3f7b01
* feat(pod): add GPU resource allocation support and refactor request/limit functions
* test(pod): add GPU allocation resource validation in unit tests 18 天前
1d1d9f43
* Add argument to Dashboard API to allow for a custom CA bundle
* add tls bundle to auth
* fix CA file usage with custom bundle path
* override client config to after config exiss
* fix whitespace
* Review arguments documentation 23 天前
更多推荐
所有评论(0)