Ibm cloud 健康检查类型属性的用途是什么

Ibm cloud 健康检查类型属性的用途是什么,ibm-cloud,cloud-foundry,Ibm Cloud,Cloud Foundry,我已经在bluemix和pivotal中部署了一个应用程序。下面是清单文件 --- applications: - name: test memory: 128M instances: 1 no-route: true health-check-type: none //Why we have to use this? 在bluemix中,如果没有健康检查类型属性,我的应用程序将启动。但在pivotal中,我不断收到下面的消息,应用程序因此崩溃 0 of 1 instances

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

---
applications:
- name: test
  memory: 128M
  instances: 1
  no-route: true
  health-check-type: none //Why we have to use this?
在bluemix中,如果没有健康检查类型属性,我的应用程序将启动。但在pivotal中,我不断收到下面的消息,应用程序因此崩溃

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(在pivotal中)中的运行状况检查类型:none后,应用程序将顺利启动


那么,有人能告诉我使用健康检查类型属性是强制性的吗?

IBM Bluemix采用的是较旧的“DEA”体系结构,而Pivotal采用的是当前的“Diego”体系结构。当涉及到
no route
选项时,您可以看到这两个选项的区别