Table of Contents

Amazon EC2 Driver 3.2

You should take into account the following technical considerations when using the EC2 cloud with OpenNebula:

Please refer to the EC2 documentation to obtain more information about Amazon instances types and image management:

EC2 Configuration

You must have a working account for AWS and signup for EC2 and S3 services, and also download and unpack the EC2 API tools provided, do some manual test to verify everything works before start configuring OpenNebula for EC2 support.

Please note that EC2 has to be installed only in the cluster front-end.

Driver Files

The driver consists of the following files:

# Max number of instances that can be launched into EC2
SMALL_INSTANCES=5
LARGE_INSTANCES=
EXTRALARGE_INSTANCES=
<!--
 Default configuration attributes for the EC2 driver
 (all domains will use these values as defaults)
 Valid atributes are:
   - ec2[keypair,authorizedports,instancetype]
 Use XML syntax to specify defaults, note elements are UPCASE
 Example:
 <TEMPLATE>
   <EC2>
     <KEYPAIR>gsg-keypair</KEYPAIR>
     <AUTHORIZEDPORTS>22</AUTHORIZEDPORTS>
     <INSTANCETYPE>m1.small</INSTANCETYPE>
   </EC2>
 </TEMPLATE>
-->

<TEMPLATE>
  <EC2>
    <INSTANCETYPE>m1.small</INSTANCETYPE>
  </EC2>
</TEMPLATE>

Configuration

OpenNebula Configuration

Two lines must be added to the /etc/one/oned.conf file in order to use the driver.

  IM_MAD = [
      name       = "im_ec2",
      executable = "one_im_ec2",
      arguments  = "drivers/monitoring/ec2/ec2.conf",
      default    = "drivers/monitoring/ec2/ec2.conf" ]

  VM_MAD = [ 
      name       = "vmm_ec2",
      executable = "one_vmm_ec2",
      arguments  = "<ec2_configuration_options> drivers/virtualization/ec2/ec2.conf",
      type       = "xml" ]

where <ec2_configuration_options> can be used to set up the EC2 environment. It can be any number of the following flags, each corresponding to one EC2 environmental variable:

FLAG SETs
-u EC2_URL
-h EC2_HOME
-k EC2_PRIVATE_KEY
-c EC2_CERT

For instance, the following line will make the driver use a specific certificate to communicate with EC2:

 arguments  = "-c /home/user/.ec2/ec2-cert.pem drivers/virtualization/ec2/ec2.conf",

Make sure that the default configuration file (ec2.conf) is passed as the last argument.

After configuring everything when you start ONE, you need to add the ec2 host to the host list to be able to submit virtual machines, like the following:

<xterm> $ onehost create ec2 im_ec2 vmm_ec2 tm_dummy dummy </xterm>

Driver Configuration

Additionally you must configure the location of your EC2 certificates and EC2 API installation path, for this edit the file /etc/one/drivers/virtualization/ec2/ec2rc and add:

EC2_HOME="<path_to_your_ec2_installation>"
EC2_PRIVATE_KEY="<path_to_your_private_key>"
EC2_CERT="<path_to_your_public_cert>"

Also you must configure the maximum capacity that you want OpenNebula to deploy on the EC2, for this edit the file /etc/one/drivers/monitoring/ec2/ec2.conf , in this example we say that we want at much 4 small and 1 large instances launched into EC2:

# Max number of instances that can be launched into EC2

SMALL_INSTANCES=4
LARGE_INSTANCES=1
EXTRALARGE_INSTANCES=

EC2 Specific Template Attributes

Mandatory Attributes

Optional Attributes

Multi EC2 Site Support

From OpenNebula 1.4 onwards it is possible to define various EC2 sites to allow opennebula the managing of EC2 availability zones or even the use of various private clouds offering EC2 interfaces.

To properly configure multiple EC2 sites, you need to follow these steps:

VM_MAD = [
    name       = "vmm_amazon_eu_west",
    executable = "one_vmm_ec2",
    arguments  = "-u https://eu-west-1.ec2.amazonaws.com drivers/virtualization/ec2/ec2.conf",
    type       = "xml" ]

<xterm> # onehost create ec2_eu_west im_ec2 vmm_amazon_eu_west tm_dummy dummy </xterm>

EC2 = [ CLOUD="ec2_eu_west",
        AMI="ami-0022c769",
        AUTHORIZED_PORTS="22" ]
EC2 = [ CLOUD="ec2_eu_east",
        AMI="ami-03324cc9",
        AUTHORIZED_PORTS="22" ]

If you create another EC2 host called ec2_eu_east then you will have ami-0022c769 launched when this VM template is sent to host ec2_eu_west and ami-03324cc9 whenever the VM template is sent to host ec2_eu_east.

:!: If only one EC2 site is defined, the EC2 driver will deploy all EC2 templates onto it, not paying attention to the CLOUD attribute.

Testing

You must create a template file containing the information of the AMIs you want to launch, its important to note that when deploying VMs on EC2 with OpenNebula, the template file should contain the attributes AMI and KEYPAIR used by the EC2 VMM Mad.

Additionally if you have an elastic IP address you want to use with your EC2 instances, you can specify it as an optional parameter.

CPU      = 0.5
MEMORY   = 128

#Xen or KVM template machine, this will be use when submitting this VM to local resources

OS       = [kernel="/vmlinuz",initrd= "/initrd.img",root="sda1" ]
DISK     = [source="/imges/apache.img",target="sda",readonly="no"]
NIC      = [bridge="eth0"]

#EC2 template machine, this will be use wen submitting this VM to EC2

EC2 = [ AMI="ami-00bafcb5",
        KEYPAIR="gsg-keypair",
        ELASTICIP="75.101.155.97",
        AUTHORIZED_PORTS="22",
        INSTANCETYPE=m1.small]

#Add this if you want to use only EC2 cloud
#REQUIREMENTS = 'NAME = "ec2"'

You only can submit and control the template using the OpenNebula interface:

<xterm> $ onevm submit ec2template </xterm>

Now you can monitor the state of the VM with

<xterm> $ onevm list

ID     USER     NAME STAT CPU     MEM        HOSTNAME        TIME
 0 oneadmin    one-0 runn   0       0             ec2 00 00:07:03

</xterm>

Also you can see information (like IP address) related to the amazon instance launched via the command

<xterm> $ onevm show 0 VIRTUAL MACHINE 0 INFORMATION ID : 0 NAME : one-0 STATE : ACTIVE LCM_STATE : RUNNING START TIME : 07/17 19:15:17 END TIME : - DEPLOY ID: : i-53ad943a

VIRTUAL MACHINE TEMPLATE EC2=[

AMI=ami-acc723c5,
AUTHORIZED_PORTS=22 ]

IP=ec2-174-129-94-206.compute-1.amazonaws.com NAME=one-0 VMID=0 </xterm>

You can check out the EC2-ONE Use Case to see how to scale out a computing cluster with OpenNebula and EC2.