# Fog::Openstack [![Gem Version](https://badge.fury.io/rb/fog-openstack.svg)](http://badge.fury.io/rb/fog-openstack) [![Build Status](https://travis-ci.org/fog/fog-openstack.svg?branch=master)](https://travis-ci.org/fog/fog-openstack) [![Dependency Status](https://gemnasium.com/fog/fog-openstack.svg)](https://gemnasium.com/fog/fog-openstack) [![Coverage Status](https://coveralls.io/repos/github/fog/fog-openstack/badge.svg?branch=master)](https://coveralls.io/github/fog/fog-openstack?branch=master) [![Code Climate](https://codeclimate.com/github/fog/fog-openstack.png)](https://codeclimate.com/github/fog/fog-openstack) [![Join the chat at https://gitter.im/fog/fog-openstack](https://badges.gitter.im/fog/fog-openstack.svg)](https://gitter.im/fog/fog-openstack?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) This is the plugin Gem to talk to [OpenStack](http://openstack.org) clouds via fog. The main maintainers for the OpenStack sections are @dhague, @Ladas, @seanhandley, @mdarby and @jjasghar. Please send CC them on pull requests. ## Supported OpenStack APIs See the list of [supported OpenStack projects](supported.md). ## Installation Add this line to your application's Gemfile: ```ruby gem 'fog-openstack' ``` And then execute: $ bundle Or install it yourself as: $ gem install fog-openstack ## Usage ### Initial Setup Require the gem: ```ruby require "fog/openstack" ``` Checklist: * Before you can do anything with an OpenStack cloud, you need to authenticate yourself with the identity service, "Keystone". * All following examples assume that `@connection_params` is a hash of valid connection information for an OpenStack cloud. * The `:openstack_username` and `:openstack_api_key` keys must map to a valid user/password combination in Keystone. * If you don't know what domain your user belongs to, chances are it's the `default` domain. By default, all users are a member of the `default` domain unless otherwise specified. Connection parameters: ```ruby @connection_params = { openstack_auth_url: "http://devstack.test:5000/v3/auth/tokens", openstack_username: "admin", openstack_api_key: "password", openstack_project_name: "admin", openstack_domain_id: "default" } ``` If you're using Keystone V2, you don't need to supply domain details but ensure the `openstack_auth_url` parameter references the correct endpoint. ```ruby @connection_params = { openstack_auth_url: "http://devstack.test:5000/v2.0/tokens", openstack_username: "admin", openstack_api_key: "password", openstack_project_name: "admin" } ``` If you're not sure whether your OpenStack cloud uses Keystone V2 or V3 then you can find out by logging into the dashboard (Horizon) and navigating to "Access & Security" under the "Project" section. Select "API Access" and find the line for the Identity Service. If the endpoint has "v3" in it, you're on Keystone V3, if it has "v2" then (surprise) you're on Keystone V2. If you need a version of OpenStack to test against, get youself a copy of [DevStack](http://docs.openstack.org/developer/devstack/). ### Networking Gotcha Note that tenants (aka projects) in OpenStack usually require that you create a default gateway router in order to allow external access to your instances. The exception is if you're using Nova (and not Neutron) for your instance networking. If you're using Neutron, you'll want to [set up your default gateway](https://github.com/fog/fog-openstack/blob/usage_doc/README.md#networking-neutron) before you try to give instances public addresses (aka floating IPs). ### Compute (Nova) Initialise a connection to the compute service: ```ruby compute = Fog::Compute::OpenStack.new(@connection_params) ``` Get a list of available images for use with booting new instances: ```ruby p compute.images # => # ] # > ``` List available flavors so we can decide how powerful to make this instance: ```ruby p compute.flavors # => , # , # ... ``` Now we know the `id` numbers of a valid image and a valid flavor, we can instantiate an instance: ```ruby flavor = compute.flavors[0] image = compute.images[0] instance = compute.servers.create name: 'test', image_ref: image.id, flavor_ref: flavor.id # Optionally, wait for the instance to provision before continuing instance.wait_for { ready? } # => {:duration=>17.359134} p instance # => [{"OS-EXT-IPS-MAC:mac_addr"=>"fa:16:3e:f4:75:ab", "version"=>4, "addr"=>"1.2.3.4", "OS-EXT-IPS:type"=>"fixed"}]}, # flavor={"id"=>"2"}, # host_id="f5ea01262720d02e886508bc4fa994782c516557d232c72aeb79638e", # image={"id"=>"57a67f8a-7bae-4578-b684-b9b4dcd48d7f"}, # name="test", # personality=nil, # progress=0, # accessIPv4="", # accessIPv6="", # availability_zone="nova", # user_data_encoded=nil, # state="ACTIVE", # created=2016-03-07 08:07:36 UTC, # updated=2016-03-07 08:07:52 UTC, # tenant_id="06a9a90c60074cdeae5f7fdd0048d9ac" # ... # > ``` And destroy it when we're done: ```ruby instance.destroy # => true ``` You'll probably need your instances to be accessible via SSH. [Learn more about SSH keypairs](https://help.github.com/articles/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent/). Allow TCP traffic through port 22: ```ruby security_group = compute.security_groups.create name: "Test SSH", description: "Allow access to port 22" # => , # tenant_id="06a9a90c60074cdeae5f7fdd0048d9ac" # > compute.security_group_rules.create parent_group_id: security_group.id, ip_protocol: "tcp", from_port: 22, to_port: 22 key_pair = compute.key_pairs.create name: "My Public Key", public_key: "/full/path/to/ssh.pub" # => ``` Now create a new server using the security group and keypair we created: ```ruby instance = compute.servers.create name: "Test 2", image_ref: image.id, flavor_ref: flavor.id, key_name: key_pair.name, security_groups: security_group # => # (some data omitted for brevity) ``` Finally, assign a floating IP address to make this instance sit under a world-visible public IP address: ```ruby pool_name = compute.addresses.get_address_pools[0]['name'] floating_ip_address = compute.addresses.create pool: pool_name instance.associate_address floating_ip_address.ip p floating_ip_address # => ``` Now you can SSH into the instance: ``` $ ssh cirros@1.2.3.4 The authenticity of host '1.2.3.4 (1.2.3.4)' can't be established. RSA key fingerprint is SHA256:cB0L/owUtcHsMhFhsuSZXxK4oRg/uqP/6IriUomQnQQ. Are you sure you want to continue connecting (yes/no)? yes Warning: Permanently added '1.2.3.4' (RSA) to the list of known hosts. $ pwd /home/cirros ``` ### Volume (Cinder) Create and attach a volume to a running instance: ```ruby compute = Fog::Compute::OpenStack.new(@connection_params) volume = compute.volumes.create name: "Test", description: "Testing", size: 1 # => flavor = compute.flavors[3] image = compute.images[0] instance = compute.servers.create name: "test", image_ref: image.id, flavor_ref: flavor.id instance.wait_for { ready? } volume.reload instance.attach_volume(volume.id, "/dev/vdb") ``` Detach volume and create a snapshot: ```ruby instance.detach_volume(volume.id) volume.reload compute.snapshots.create volume_id: volume.id, name: "test", description: "test" # => ``` Destroy a volume: ```ruby volume.destroy # => true ``` ### Image (Glance) Download Glance image: ```ruby image = Fog::Image::OpenStack.new(@connection_params) image_out = File.open("/tmp/cirros-image-download", 'wb') streamer = lambda do |chunk, _, _| image_out.write chunk end image.download_image(image.images.first.id, response_block: streamer) ``` Create Glance image from file or URL: ```ruby cirros_location = "http://download.cirros-cloud.net/0.3.4/cirros-0.3.4-x86_64-disk.img" image_out = File.open("/tmp/cirros-image-#{SecureRandom.hex}", 'wb') streamer = lambda do |chunk, _, _| image_out.write chunk end Excon.get cirros_location, response_block: streamer image_out.close image.images.create name: "cirros", disk_format: "qcow2", container_format: "bare" image.upload_data File.binread(image_out.path) ``` Destroy image: ```ruby cirros = image.images.get("4beedb46-e32f-4ef3-a87b-7f1234294dc1") cirros.destroy ``` ### Identity (Keystone) List domains (Keystone V3 only): ```ruby identity = Fog::Identity::OpenStack.new(@connection_params) identity.domains # => # ] # > ``` List projects (aka tenants): ```ruby identity.projects # => , # ... # ] # On Keystone V2 identity.tenants # => user.destroy # => true ``` Create/destroy new tenant: ```ruby project = identity.projects.create name: "test", description: "test" # => project.destroy # => true ``` Grant user role on tenant and revoke it: ```ruby role = identity.roles.select{|role| role.name == "_member_"}[0] # => project.grant_role_to_user(role.id, user.id) project.revoke_role_from_user(role.id, user.id) ``` ### Networking (Neutron) Set up a project's public gateway (needed for external access): ```ruby identity = Fog::Identity::OpenStack.new(@connection_params) tenants = identity.projects.select do |project| project.name == @connection_params[:openstack_project_name] end tenant_id = tenants[0].id neutron = Fog::Network::OpenStack.new(@connection_params) network = neutron.networks.create name: "default", tenant_id: tenant_id subnet = network.subnets.create name: "default", cidr: "192.168.0.0/24", network_id: network.id, ip_version: 4, dns_nameservers: ["8.8.8.8", "8.8.4.4"], tenant_id: tenant_id external_network = neutron.networks.select(&:router_external)[0] router = neutron.routers.create name: 'default', tenant_id: tenant_id, external_gateway_info: external_network.id neutron.add_router_interface router.id, subnet.id ``` ### Further Reading * See [the documentation directory](https://github.com/fog/fog-openstack/tree/master/lib/fog/openstack/docs) for more examples. * Read the [OpenStack API documentation](http://developer.openstack.org/api-ref.html). * Also, remember that reading the code itself is the best way to educate yourself on how best to interact with this gem. ## Development After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment. To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org). ## Contributing Bug reports and pull requests are welcome on GitHub at https://github.com/fog/fog-openstack. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct. ## License The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).