0

我正在尝试在以下网站安装我的第一个蓝图:http: //getcloudify.org/guide/3.2/getting-started-deploy-blueprint-locally.html,但是在运行命令时:

D:\cloudify-manager\cloudify-nodecellar-example>cfy local init --blueprint-path aws-ec2-blueprint.yaml

我收到以下错误:

'ami-d05e75b8' is not of type 'object'; Path to error: inputs.image

我的 aws-ec2-blueprint.yaml:

...

inputs:

  image: ami-d05e75b8
  size: m4.large
  agent_user: ubuntu

node_templates:

...

有什么建议吗?

4

1 回答 1

1

您正在尝试在本地部署应在 AWS VM 上运行的蓝图。如果您希望在本地运行 Nodecellar,请尝试运行:https ://github.com/cloudify-cosmo/cloudify-nodecellar-example/blob/master/local-blueprint.yaml

BR,乔纳森

于 2015-10-13T09:49:17.473 回答