在本地安装蓝图时出错

时间:2015-10-12 13:19:45

标签: cloudify

我正在尝试在网站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:

...

有什么建议吗?

1 个答案:

答案 0 :(得分:1)

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

BR, 乔纳森

相关问题