我尝试运行命令cf switch-space
以在我的Cloud Foundry帐户之间切换。有什么建议我有这个问题吗?
cf switch-space
'switch-space' is not a registered command. See 'cf help -a'
INFO
$ cf -v
cf version 6.32.0+0191c33d9.2017-09-26
答案 0 :(得分:0)
因为它不是库存cf cli命令。如果要切换到同一基础上的新组织和空间,请使用cf target
。
如果您想保存多个目标的身份验证和目标,建议您使用targets
插件,可在此处找到:https://github.com/guidowb/cf-targets-plugin。它也列在https://plugins.cloudfoundry.org上。只需搜索Targets
。
答案 1 :(得分:0)
假设您要在同一单位内执行此操作,则可以在像这样的空格之间切换
cf t -s <the-name-of-your-space>
或再次登录到其他空间
cf login -a <endpoint> -u <user> -o <org> -s <space>