更改 bosh(使用 bosh-lite)和 CloudFoundry 的部署
Change deployment for bosh (using bosh-lite) and CloudFoundry
我正在使用 bosh-lite 来试用 Cloud Foundry。我有两个部署:
$ bosh deployments
+---------------------+-----------------------+-------------------------------------------------+
| Name | Release(s) | Stemcell(s) |
+---------------------+-----------------------+-------------------------------------------------+
| cf-services-contrib | cf-services-contrib/6 | bosh-warden-boshlite-ubuntu-trusty-go_agent/389 |
+---------------------+-----------------------+-------------------------------------------------+
| cf-warden | cf/203 | bosh-warden-boshlite-ubuntu-trusty-go_agent/389 |
+---------------------+-----------------------+-------------------------------------------------+
这些部署中的每一个都包含多个虚拟机(如 bosh vms
所示)。
当前部署设置如下:
$ bosh deployment
Current deployment is `[...]/cf-services-contrib-release/tmp/contrib-services-warden-manifest.yml'
我可以使用命令 bosh ssh
ssh 进入该选定部署中的虚拟机,但我无法通过 ssh 进入任何其他虚拟机。如何更改选定的部署?
我尝试了 bosh deployment cf/203
,并且还通过将绝对路径传递给 cf-release/releases/cf-203.yml 文件。
谢谢
你后面的建议应该可行:
bosh deployment path/to/manifest.yml
bosh ssh
我正在使用 bosh-lite 来试用 Cloud Foundry。我有两个部署:
$ bosh deployments
+---------------------+-----------------------+-------------------------------------------------+
| Name | Release(s) | Stemcell(s) |
+---------------------+-----------------------+-------------------------------------------------+
| cf-services-contrib | cf-services-contrib/6 | bosh-warden-boshlite-ubuntu-trusty-go_agent/389 |
+---------------------+-----------------------+-------------------------------------------------+
| cf-warden | cf/203 | bosh-warden-boshlite-ubuntu-trusty-go_agent/389 |
+---------------------+-----------------------+-------------------------------------------------+
这些部署中的每一个都包含多个虚拟机(如 bosh vms
所示)。
当前部署设置如下:
$ bosh deployment
Current deployment is `[...]/cf-services-contrib-release/tmp/contrib-services-warden-manifest.yml'
我可以使用命令 bosh ssh
ssh 进入该选定部署中的虚拟机,但我无法通过 ssh 进入任何其他虚拟机。如何更改选定的部署?
我尝试了 bosh deployment cf/203
,并且还通过将绝对路径传递给 cf-release/releases/cf-203.yml 文件。
谢谢
你后面的建议应该可行:
bosh deployment path/to/manifest.yml
bosh ssh