You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@libcloud.apache.org by "Quentin Pradet (JIRA)" <ji...@apache.org> on 2018/01/31 16:31:00 UTC

[jira] [Commented] (LIBCLOUD-980) c5 instances not available via libcloud ec2

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

Quentin Pradet commented on LIBCLOUD-980:
-----------------------------------------

We added this to the development version of libcloud in December however it's not released yet.

[https://github.com/apache/libcloud/commit/2f7637e85863d1a9272429c51830ae6063be40d3|https://github.com/apache/libcloud/commit/2f7637e85863d1a9272429c51830ae6063be40d3),]

> c5 instances not available via libcloud ec2
> -------------------------------------------
>
>                 Key: LIBCLOUD-980
>                 URL: https://issues.apache.org/jira/browse/LIBCLOUD-980
>             Project: Libcloud
>          Issue Type: Bug
>            Reporter: Arturo Noha
>            Priority: Blocker
>
> The new c5 family of instances is not available in the ec2 driver.
> This is a blocker for me as I am automating the build of a batch of c5.xlarge instances.
> As a quick fix I've added the following locally to *libcloud/compute/drivers/ec2.py* to be able to run the build:
> {code:java}
> INSTANCE_TYPES = {
> ...
>     'c5.xlarge': {
>         'id': 'c5.xlarge',
>         'name': 'Compute Optimized Extra Large Instance',
>         'ram': GiB(8),
>         'disk': 0, # EBS only
>         'bandwidth': None,
>         'extra': {
>         'cpu': 4
>     }
> },
> ...
> # EU (London) Region
>     'eu-west-2': {
> ...
>     'instance_types': [
> ...
>         'c5.xlarge',{code}



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)