health-check-type属性有什么用

What is the use of health-check-type attribute

我已经在 bluemix 和 pivotal 中部署了一个应用程序。下面是清单文件

---
applications:
- name: test
  memory: 128M
  instances: 1
  no-route: true
  health-check-type: none //Why we have to use this?

在 bluemix 中,没有运行状况检查类型属性,我的应用程序正在启动。但关键是,由于应用程序崩溃,我不断收到以下消息。

0 of 1 instances starting
0 of 1 instances starting
0 of 1 instances starting
0 of 1 instances starting
0 of 1 instances starting
0 of 1 instances starting
0 of 1 instances starting
FAILED

在 manifest.yml 中通过 health-check-type: none 后(关键),应用程序开始正常运行。

有人能告诉我是否必须使用健康检查类型属性?

IBM Bluemix 使用较旧的 "DEA" 架构,而 Pivotal 使用当前的 "Diego" 架构。当涉及到 no-route 选项 here.

时,您可以看到两者有何不同