Bluemix - 如何知道我的应用程序的当前堆栈?
Bluemix - How to tell the current stack of my app?
9 月,我收到一封电子邮件,说旧堆栈 (lucid64
) 将在 10 月底前删除。
邮件还说,10 月 17 日(三天前)Bluemix 将启动自动迁移到 cflinuxfs2
。
我如何知道我的应用程序是否已迁移?
从现在开始我必须 运行 cf push
和 -s cflinuxfs2
标志吗?如果是,到什么时候?
这个月我已经执行了几次cf push
但是没有-s
标志。
谢谢
运行 以下命令将显示您的应用程序堆栈。
[07:40:10 ~]$ cf app velocityapp
...
stack: cflinuxfs2
您可以使用 -s 标志重新推送您的应用程序,否则平台将在稍后自动迁移您。
cf app APP_NAME
应该显示堆栈,例如:
$ cf app APP_NAME
Showing health and status for app APP_NAME in org ORG_NAME / space SPACE_NAME as ME@MY_DOMAIN.com...
OK
requested state: started
instances: 2/2
usage: 32M x 2 instances
urls: APP_NAME.APP_DOMAIN.com
last uploaded: Mon Oct 19 02:21:39 UTC 2015
stack: cflinuxfs2
buildpack: go_buildpack
state since cpu memory disk details
#0 running 2015-10-18 07:22:08 PM 2.1% 10.7M of 32M 38.9M of 64M
#1 running 2015-10-18 07:22:07 PM 2.1% 8.4M of 32M 38.9M of 64M
你可以看到上面写着stack: cflinuxfs2
9 月,我收到一封电子邮件,说旧堆栈 (lucid64
) 将在 10 月底前删除。
邮件还说,10 月 17 日(三天前)Bluemix 将启动自动迁移到 cflinuxfs2
。
我如何知道我的应用程序是否已迁移?
从现在开始我必须 运行 cf push
和 -s cflinuxfs2
标志吗?如果是,到什么时候?
这个月我已经执行了几次cf push
但是没有-s
标志。
谢谢
运行 以下命令将显示您的应用程序堆栈。
[07:40:10 ~]$ cf app velocityapp ... stack: cflinuxfs2
您可以使用 -s 标志重新推送您的应用程序,否则平台将在稍后自动迁移您。
cf app APP_NAME
应该显示堆栈,例如:
$ cf app APP_NAME
Showing health and status for app APP_NAME in org ORG_NAME / space SPACE_NAME as ME@MY_DOMAIN.com...
OK
requested state: started
instances: 2/2
usage: 32M x 2 instances
urls: APP_NAME.APP_DOMAIN.com
last uploaded: Mon Oct 19 02:21:39 UTC 2015
stack: cflinuxfs2
buildpack: go_buildpack
state since cpu memory disk details
#0 running 2015-10-18 07:22:08 PM 2.1% 10.7M of 32M 38.9M of 64M
#1 running 2015-10-18 07:22:07 PM 2.1% 8.4M of 32M 38.9M of 64M
你可以看到上面写着stack: cflinuxfs2