0

我尝试根据链接https://brooklyn.incubator.apache.org/v/latest/yaml/chef/creating-blueprints.html从厨师创建蓝图。

大型实例的 location 和 provisioning.properties 是通过 yaml 提供的。

但是当我启动它时,我收到以下错误:

Required entity not healthy: ChefEntityImpl{id=aL3U028F}Failure running task invoking
start[locations] on 1 node (Aw2cyO4I): Error invoking start at ChefEntityImpl{id=aL3U028F}:
org.jclouds.aws.AWSResponseException: request POST https://ec2.us-west-1.amazonaws.com/
 HTTP/1.1 failed with code 400, error: AWSError{requestId='27baa951-42d1-424d-9bca-c97047207ac3',
requestToken='null', code='InvalidParameterCombination', message=**'Virtualization type
'hvm' is required for instances of type 't2.small'.',** 

Brooklyn 正在选择 t2.small 类型的实例,忽略通过 yaml 提到的 provisioning.properties。

有没有办法通过 brooklyn.properties 文件指定 provision.properties 或强制 Brooklyn 使用通过 blueprint 提供的配置覆盖?

有人可以帮我吗?

4

1 回答 1

0

现在问题已经解决了。我可以通过将 ami Id 指定为 provisioning.properties 的一部分来启动 Chef 蓝图。provisioning.properties: # 这将覆盖属性 minRam: 5046mb minCores: 4 minDisk: 1024 imageId: eu-west-1/ami-3bbaa54f 我在缩进中犯了一个错误。请参阅 gist.github.com/ahgittin/ef8a4b39695f6d4c684e 了解更多详情。谢谢您的帮助 !

于 2017-03-14T11:10:08.260 回答