Uploaded image for project: 'Libcloud'
  1. Libcloud
  2. LIBCLOUD-980

c5 instances not available via libcloud ec2

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Open
    • Blocker
    • Resolution: Unresolved
    • None
    • None
    • None
    • None

    Description

      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:

      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',

      Attachments

        Activity

          People

            Unassigned Unassigned
            r2ronoha Arturo Noha
            Votes:
            1 Vote for this issue
            Watchers:
            4 Start watching this issue

            Dates

              Created:
              Updated: