[ 
https://issues.apache.org/jira/browse/WHIRR-328?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13079298#comment-13079298
 ] 

Adrian Cole commented on WHIRR-328:
-----------------------------------

in jclouds 1.1.0, you can build your own selection criteria for images via the 
new templateBuilder.imageMatches(Predicate<Image>)

There's a builtin one you can use for using instance-store for the boot device 
(implication of S3-backed ami)

      // example, noting this will not work on t1.micro as it has no 
instance-store
      template = 
context.getComputeService().templateBuilder().osFamily(OsFamily.AMZN_LINUX)
            
.imageMatches(EC2ImagePredicates.rootDeviceType(RootDeviceType.INSTANCE_STORE)).build();

http://code.google.com/p/jclouds/wiki/ReleaseNotes110

> Default to AMIs with no EBS persistence on EC2
> ----------------------------------------------
>
>                 Key: WHIRR-328
>                 URL: https://issues.apache.org/jira/browse/WHIRR-328
>             Project: Whirr
>          Issue Type: Improvement
>            Reporter: Andrei Savu
>         Attachments: WHIRR-328.patch
>
>
> It seems like jclouds selects by default Ubuntu AMIs with EBS persistence but 
> we don't really need that. We should update the code to avoid this. 

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Reply via email to