4.5.5版本中可用,2019.07.18版本中不可用
// 将租户添加到Cloudify Manager
cfy tenants create semanteme
// 将单个用户添加到租户
cfy tenants add-user admin -t semanteme -r user
cfy profiles use 192.168.254.118 -u admin -p password -t semanteme
cfy profiles set -t semanteme
cfy blueprints list
cfy deployments list
cfy nodes list
cfy nodes get nodecellar -d deployment-local
cfy node-instances list
cfy node-instances get nodecellar_0p4ijj
cfy plugins list
cfy agents list
cfy blueprints upload -b <choose_blueprint_id> <blueprint_filename>
cfy deployments create -b <blueprint_id> <choose_deployment_id> -i inputs/<inputs_filename>
cfy executions start install -d <deployment_id>
一旦工作流执行完成,我们可以通过运行以下命令查看应用程序端点:
cfy deployments outputs -d <deployment_id>
点击该URL以查看应用程序正在运行。
现在让我们运行uninstall工作流程。这将卸载应用程序,并删除所有相关资源。
cfy executions start uninstall -d <deployment_id>
最好删除我们不再使用的部署,因为它们会占用管理机上的内存。我们通过运行以下命令来做到这一点:
cfy deployments delete <deployment_id>
如果您不再需要使用Cloudify Manager,则可以通过运行以下命令来撕毁它(以及引导过程创建的所有资源):
cfy teardown -f