api-site/firstapp/source/getting_started.rst
Caleb Boylan b09b44a717 Finish section 1 of fog's firstapp tutorial.
Change-Id: I4cffb3574f2f3f9a1b27498f9fbb9b1441950915
2015-09-22 20:04:49 -07:00

38 KiB

Getting started

Who should read this guide

This guide is for software developers who want to deploy applications to OpenStack clouds.

We assume that you're an experienced programmer who has not created a cloud application in general or an OpenStack application in particular.

If you're familiar with OpenStack, this section teaches you how to program with its components.

What you will learn

Deploying applications in a cloud environment can be very different from deploying them in a traditional IT environment. This guide teaches you how to deploy applications on OpenStack and some best practices for cloud application development.

A general overview

This tutorial shows two applications. The first application is a simple fractal generator that uses mathematical equations to generate beautiful fractal images. We show you this application in its entirety so that you can compare it to a second, more robust, application.

The second application is an OpenStack application that enables you to:

  • Create and destroy compute resources. These resources are virtual machine instances where the Fractals application runs.
  • Make cloud-related architecture decisions such as turning functions into micro-services and modularizing them.
  • Scale available resources up and down.
  • Use Object and Block storage for file and database persistence.
  • Use Orchestration services to automatically adjust to the environment.
  • Customize networking for better performance and segregation.
  • Explore and apply advanced OpenStack cloud features.

Choose your OpenStack SDK

Anyone with a programming background can easily read the code in this guide. Although this guide focuses on a particular SDK, you can use other languages and toolkits with the OpenStack cloud:

Language Name Description URL

Python

Libcloud

A Python-based library managed by the Apache Foundation. This library enables you to work with multiple types of clouds.

https://libcloud.apache.org

Python OpenStack SDK A Python-based library specifically developed for OpenStack. https://github.com/stackforge/python-openstacksdk

Python

Shade

A Python-based library developed by OpenStack Infra team to operate multiple OpenStack clouds.

https://github.com/openstack-infra/shade

Java

jClouds

A Java-based library. Like Libcloud, it's also managed by the Apache Foundation and works with multiple types of clouds.

https://jclouds.apache.org

Ruby fog A Ruby-based SDK for multiple clouds. https://github.com/fog/fog/blob/master/lib/fog/openstack/docs/getting_started.md
node.js pkgcloud A Node.js-based SDK for multiple clouds. https://github.com/pkgcloud/pkgcloud
PHP php-opencloud A library for developers using PHP to work with OpenStack clouds. http://php-opencloud.com/

.NET Framework

OpenStack SDK for Microsoft .NET

A .NET-based library enables you to write C++ or C# code for Microsoft applications.

https://www.nuget.org/packages/openstack.net

For a list of available SDKs, see Software Development Kits.

Other versions of this guide show you how to use the other SDKs and languages to complete these tasks. If you're a developer for another toolkit that you would like this guide to include, feel free to submit code snippets. You can contact OpenStack Documentation team members for more information.

What you need

We assume that you can already access an OpenStack cloud. You must have a project, also known as a tenant, with a minimum quota of six instances. Because the Fractals application runs in Ubuntu, Debian, Fedora-based, and openSUSE-based distributions, you must create instances that use one of these operating systems.

To interact with the cloud, you must also have

dotnet

OpenStack Cloud SDK for Microsoft .NET 1.4.0.1 or later installed.

Note

To install the OpenStack .NET SDK, use the NeGet Package Manager that is included with Visual Studio and Xamarin Studio. You simply add a package named 'openstack.net' and the NeGet Package Manager automatically installs the necessary dependencies.

Warning

This document has not yet been completed for the .NET SDK.

fog

fog 1.19 or higher installed and working with ruby gems 1.9.

Warning

This document has not yet been completed for the fog SDK.

jclouds

jClouds 1.8 or higher installed.

Warning

This document has not yet been completed for the jclouds SDK.

openstacksdk

the OpenStack SDK installed.

Warning

This document has not yet been completed for the OpenStack SDK.

phpopencloud

a recent version of php-opencloud installed.

Warning

This document has not yet been completed for the php-opencloud SDK.

shade

a recent version of shade library installed.

Note

Before proceeding, install the latest version of shade.

Obtain the following information from your cloud provider:

  • auth URL
  • user name
  • password
  • project ID or name (projects are also known as tenants)
  • cloud region

You can also download the OpenStack RC file from the OpenStack Horizon dashboard. Log in to the dashboard and click Project->Access & Security->API Access->Download OpenStack RC file. If you use this method, be aware that the "auth URL" does not include the path. For example, if your openrc.sh file shows:

export OS_AUTH_URL=http://controller:5000/v2.0

The actual auth URL is:

http://controller:5000

How you'll interact with OpenStack

In this tutorial, you interact with your OpenStack cloud through the SDK that you chose in "Choose your OpenStack SDK." This guide assumes that you know how to run code snippets in your language of choice.

fog

../samples/fog/getting_started.rb

libcloud

To try it, add the following code to a Python script (or use an interactive Python shell) by calling python -i.

../samples/libcloud/getting_started.py

openstacksdk

from openstack import connection
conn = connection.Connection(auth_url="http://controller:5000/v3",
                             user_name="your_auth_username",
                             password="your_auth_password", ...)

pkgcloud

To try it, add the following code to a script (or use an interactive nodejs shell) by calling node.

../samples/pkgcloud/getting_started.js

dotnet

To use the OpenStack .NET SDK, add the following code in the required namespace section.

using net.openstack.Core.Domain;
using net.openstack.Core.Providers;
using net.openstack.Providers.Rackspace;

Because all service endpoints use the Identity Service for authentication and authorization, place the following code in the 'void Main()' entry-point function.

../samples/dotnet/getting_started.cs

Note

Because the tutorial reuses the conn object, make sure that you always have one handy.

libcloud

Note

If you receive the libcloud.common.types.InvalidCredsError: 'Invalid credentials with the provider' exception when you run one of these API calls, double-check your credentials.

Note

If your provider does not support regions, try a blank string ('') for the region_name.

shade

Use your credentials above to specify the cloud provider name, user name, password, project_name and region_name in the file ~/.config/openstack/clouds.yml.

../samples/shade/clouds.yml

Note

If you do use a public cloud known by shade, you can avoid specifying auth_url: and instead specify profile: $PROVIDER_NAME in the clouds.yml file.

../samples/shade/getting_started.py

Flavors and images

To run your application, you must launch an instance. This instance serves as a virtual machine.

To launch an instance, you choose a flavor and an image. The flavor represents the size of the instance, including the number of CPUs and amount of RAM and disk space. An image is a prepared OS installation from which you clone your instance. When you boot instances in a public cloud, larger flavors can be more expensive than smaller ones in terms of resources and monetary cost.

To list the images that are available in your cloud, run some API calls:

fog

../samples/fog/getting_started.rb

libcloud

../samples/libcloud/getting_started.py

This code returns output like this:

<NodeImage: id=2cccbea0-cea9-4f86-a3ed-065c652adda5, name=ubuntu-14.04, driver=OpenStack  ...>
<NodeImage: id=f2a8dadc-7c7b-498f-996a-b5272c715e55, name=cirros-0.3.3-x86_64, driver=OpenStack  ...>

pkgcloud

../samples/pkgcloud/getting_started.js

This code returns output like this:

id: 6c7f5627-ca40-4781-ac34-4d9af53d4b29
name: Fedora 22 - Updated
created: 2015-08-17T03:53:17Z
updated: 2015-08-17T04:53:12Z
status: ACTIVE

...
id: 2cccbea0-cea9-4f86-a3ed-065c652adda5
name: Ubuntu 14.04
created: 2015-08-13T02:25:10Z
updated: 2015-08-13T02:43:38Z
status: ACTIVE

dotnet

../samples/dotnet/getting_started.cs

This code returns output like this:

Image Id: dce1a289-2ad5-4aaa-a7a6-fe30adc2094e - Image Name: snap1
Image Id: 97f55846-6ea5-4e9d-b437-bda97586bd0c - Image Name: cirros-0.3.4-x86_64-uec
Image Id: 3e0e8270-0da4-4fec-bfc7-eeb763604cad - Image Name: cirros-0.3.4-x86_64-uec-ramdisk
Image Id: 0b151382-d2f1-44d7-835b-6408bd523917 - Image Name: cirros-0.3.4-x86_64-uec-kernel

shade

../samples/shade/getting_started.py

This code returns output like this:

checksum: 750a56555d4ec7303f5dc33b007ff632
container_format: bare
created_at: '2014-07-14T19:02:15Z'
direct_url:
rbd://7e14670e-a6f8-445b-b632-4b79bafc4781/masseffect-images/b4efbc2a-6130-4f2e-b436-55a618c4de20/snap
disk_format: raw
file: /v2/images/b4efbc2a-6130-4f2e-b436-55a618c4de20/file
id: b4efbc2a-6130-4f2e-b436-55a618c4de20
min_disk: 10
min_ram: 1024
name: Debian-7.0-Wheezy
owner: 0bacd8121bb548698f340455b38bf561
protected: false
schema: /v2/schemas/image
size: 5242880000
status: active
tags: []
updated_at: '2014-10-15T22:42:52Z'
visibility: public

You can also get information about available flavors:

fog

../samples/fog/getting_started.rb

libcloud

../samples/libcloud/getting_started.py

This code returns output like this:

<OpenStackNodeSize: id=1, name=m1.tiny, ram=512, disk=1, bandwidth=None, price=0.0, driver=OpenStack, vcpus=1,  ...>
<OpenStackNodeSize: id=2, name=m1.small, ram=2048, disk=20, bandwidth=None, price=0.0, driver=OpenStack, vcpus=1,  ...>
<OpenStackNodeSize: id=3, name=m1.medium, ram=4096, disk=40, bandwidth=None, price=0.0, driver=OpenStack, vcpus=2,  ...>
<OpenStackNodeSize: id=4, name=m1.large, ram=8192, disk=80, bandwidth=None, price=0.0, driver=OpenStack, vcpus=4,  ...>
<OpenStackNodeSize: id=5, name=m1.xlarge, ram=16384, disk=160, bandwidth=None, price=0.0, driver=OpenStack, vcpus=8,  ...>

pkgcloud

../samples/pkgcloud/getting_started.js

This code returns output like this:

id: c46104de-d5fd-4567-ab0b-3dcfd117bd99
name: m2.xlarge
ram: 49152
disk: 30
vcpus: 12

...
id: cba9ea52-8e90-468b-b8c2-777a94d81ed3
name: m1.small
ram: 2048
disk: 20
vcpus: 1

dotnet

../samples/dotnet/getting_started.cs

This code returns output like this:

Flavor Id: 1 - Flavor Name: m1.tiny
Flavor Id: 2 - Flavor Name: m1.small
Flavor Id: 3 - Flavor Name: m1.medium
Flavor Id: 4 - Flavor Name: m1.large
Flavor Id: 42 - Flavor Name: m1.nano
Flavor Id: 5 - Flavor Name: m1.xlarge
Flavor Id: 84 - Flavor Name: m1.micro

shade

../samples/shade/getting_started.py

This code returns output like this:

HUMAN_ID: true
NAME_ATTR: name
OS-FLV-DISABLED:disabled: false
OS-FLV-EXT-DATA:ephemeral: 0
disk: 80
ephemeral: 0
human_id: supersonic
id: '200'
is_public: true
links:
-   href:
    https://compute.dream.io:8774/v2/5d013ac5962749a49af7ff18c2fb228c/flavors/200
    rel: self
-   href:
    https://compute.dream.io:8774/5d013ac5962749a49af7ff18c2fb228c/flavors/200
    rel: bookmark
name: supersonic
os-flavor-access:is_public: true
ram: 2048
swap: ''
vcpus: 1

Your images and flavors will be different, of course.

Choose an image and flavor for your instance. You need about 1GB RAM, 1 CPU, and a 1GB disk. This example uses the Ubuntu image with a small flavor, which is a safe choice. In subsequent tutorial sections in this guide, you must change the image and flavor IDs to correspond to the image and flavor that you choose.

If the image that you want is not available in your cloud, you can usually upload one depending on your cloud's policy settings. For information about how to upload images, see obtaining images.

Set the image and size variables to appropriate values for your cloud. We'll use these variables in later sections.

First, tell the connection to get a specified image by using the ID of the image that you picked in the previous section:

fog

../samples/fog/getting_started.rb

libcloud

../samples/libcloud/getting_started.py

This code returns output like this:

<NodeImage: id=2cccbea0-cea9-4f86-a3ed-065c652adda5, name=ubuntu-14.04, driver=OpenStack  ...>

pkgcloud

../samples/pkgcloud/getting_started.js

This code returns output like this:

id: 2cccbea0-cea9-4f86-a3ed-065c652adda5
name: Ubuntu 14.04
created: 2015-08-13T02:25:10Z
updated: 2015-08-13T02:43:38Z
status: ACTIVE

dotnet

../samples/dotnet/getting_started.cs

This code returns output like this:

Image Id: 97f55846-6ea5-4e9d-b437-bda97586bd0c - Image Name: cirros-0.3.4-x86_64-uec

shade

../samples/shade/getting_started.py

This code returns output like this:

checksum: da578dd59289a35a0ac7744a0bd85cf5
container_format: bare
created_at: '2014-10-27T22:05:37Z'
direct_url:
rbd://7e14670e-a6f8-445b-b632-4b79bafc4781/masseffect-images/c55094e9-699c-4da9-95b4-2e2e75f4c66e/snap
disk_format: raw
file: /v2/images/c55094e9-699c-4da9-95b4-2e2e75f4c66e/file
id: c55094e9-699c-4da9-95b4-2e2e75f4c66e
min_disk: 0
min_ram: 0
name: Ubuntu-14.04-Trusty
owner: 0bacd8121bb548698f340455b38bf561
protected: false
schema: /v2/schemas/image
size: 10737418240
status: active
tags: []
updated_at: '2014-10-27T22:08:55Z'
visibility: public

Next, choose which flavor you want to use:

fog

../samples/fog/getting_started.rb

libcloud

../samples/libcloud/getting_started.py

This code returns output like this:

<OpenStackNodeSize: id=2, name=m1.small, ram=2048, disk=20, bandwidth=None, price=0.0, driver=OpenStack, vcpus=1,  ...>

pkgcloud

../samples/pkgcloud/getting_started.js

This code returns output like this:

id: cba9ea52-8e90-468b-b8c2-777a94d81ed3
name: m1.small
ram: 2048
disk: 20
vcpus: 1

dotnet

../samples/dotnet/getting_started.cs

This code returns output like this:

Flavor Id: 2 - Flavor Name: m1.small

shade

Because shade accepts either the ID or name in most API calls, specify the name for the flavor:

../samples/shade/getting_started.py

This code returns output like this:

HUMAN_ID: true
NAME_ATTR: name
OS-FLV-DISABLED:disabled: false
OS-FLV-EXT-DATA:ephemeral: 0
disk: 80
ephemeral: 0
human_id: subsonic
id: '100'
is_public: true
links:
-   href:
    https://compute.dream.io:8774/v2/5d013ac5962749a49af7ff18c2fb228c/flavors/100
    rel: self
-   href:
    https://compute.dream.io:8774/5d013ac5962749a49af7ff18c2fb228c/flavors/100
    rel: bookmark
name: subsonic
os-flavor-access:is_public: true
ram: 1024
swap: ''
vcpus: 1

Now, you're ready to launch the instance.

Launch an instance

Use your selected image and flavor to create an instance.

Note

The following instance creation example assumes that you have a single-tenant network. If you receive the 'Exception: 400 Bad Request Multiple possible networks found, use a Network ID to be more specific' error, you have multiple-tenant networks. You must add a networks parameter to the call that creates the server. See /appendix for details.

Create the instance.

Note

Your SDK might call an instance a 'node' or 'server'.

fog

../samples/fog/getting_started.rb

libcloud

../samples/libcloud/getting_started.py

This code returns output like this:

<Node: uuid=1242d56cac5bcd4c110c60d57ccdbff086515133, name=testing, state=PENDING, public_ips=[], private_ips=[], provider=OpenStack ...>

openstacksdk

args = {
    "name": "testing",
    "flavorRef": flavor,
    "imageRef": image,
}
instance = conn.compute.create_server(**args)

pkgcloud

../samples/pkgcloud/getting_started.js

This code returns output like this:

0d7968dc-4bf4-4e01-b822-43c9c1080d77

dotnet

../samples/dotnet/getting_started.cs

This code returns output like this:

Instance Id: 4e480ef1-68f0-491f-b237-d9b7f500ef24 at net.openstack.Core.Domain.Link[]

shade

../samples/shade/getting_started.py

If you list existing instances:

fog

../samples/fog/getting_started.rb

libcloud

../samples/libcloud/getting_started.py

pkgcloud

../samples/pkgcloud/getting_started.js

dotnet

../samples/dotnet/getting_started.cs

shade

../samples/shade/getting_started.py

The new instance appears.

libcloud

<Node: uuid=1242d56cac5bcd4c110c60d57ccdbff086515133, name=testing, state=RUNNING, public_ips=[], private_ips=[], provider=OpenStack ...>

openstacksdk

instances = conn.compute.list_servers()
for instance in instances:
    print(instance)

pkgcloud

...
id: '0d7968dc-4bf4-4e01-b822-43c9c1080d77',
name: 'testing',
status: 'PROVISIONING',
progress: 0,
imageId: '2cccbea0-cea9-4f86-a3ed-065c652adda5',
adminPass: undefined,
addresses: {},
metadata: {},
flavorId: '3',
hostId: 'b6ee757ed678e8c6589ae8cce405eeded89ac914daec73e45a5c50b8',
created: '2015-06-30T08:17:39Z',
updated: '2015-06-30T08:17:44Z',
...

dotnet

Instance Id: 4e480ef1-68f0-491f-b237-d9b7f500ef24 at net.openstack.Core.Domain.Link[]

shade

HUMAN_ID: true
 NAME_ATTR: name
 OS-DCF:diskConfig: MANUAL
 OS-EXT-AZ:availability_zone: iad-1
 OS-EXT-STS:power_state: 1
 OS-EXT-STS:task_state: null
 OS-EXT-STS:vm_state: active
 OS-SRV-USG:launched_at: '2015-07-20T20:31:10.000000'
 OS-SRV-USG:terminated_at: null
 accessIPv4: ''
 accessIPv6: ''
 addresses:
     private-network:
     -   OS-EXT-IPS-MAC:mac_addr: fa:16:3e:60:f5:cd
         OS-EXT-IPS:type: fixed
         addr: 2607:f298:6050:4e14:f816:3eff:fe60:f5cd
         version: 6
     -   OS-EXT-IPS-MAC:mac_addr: fa:16:3e:60:f5:cd
         OS-EXT-IPS:type: fixed
         addr: 10.10.10.14
         version: 4
 config_drive: ''
 created: '2015-07-20T20:30:23Z'
 flavor:
     id: '100'
     links:
     -   href:
         https://compute.dream.io:8774/5d013ac5962749a49af7ff18c2fb228c/flavors/100
         rel: bookmark
 hostId: f71865b497e6fa71063e292b11846eb64b5a41cd5c00fbb7465b6a48
 human_id: testing
 id: 67ecebdc-daff-4d84-bd04-bc76c67b48ec
 image:
     id: c55094e9-699c-4da9-95b4-2e2e75f4c66e
     links:
     -   href:
         https://compute.dream.io:8774/5d013ac5962749a49af7ff18c2fb228c/images/c55094e9-699c-4da9-95b4-2e2e75f4c66e
         rel: bookmark
 key_name: null
 links:
 -   href:
     https://compute.dream.io:8774/v2/5d013ac5962749a49af7ff18c2fb228c/servers/67ecebdc-daff-4d84-bd04-bc76c67b48ec
     rel: self
 -   href:
     https://compute.dream.io:8774/5d013ac5962749a49af7ff18c2fb228c/servers/67ecebdc-daff-4d84-bd04-bc76c67b48ec
     rel: bookmark
 metadata: {}
 name: testing
 networks:
     private-network:
     - 2607:f298:6050:4e14:f816:3eff:fe60:f5cd
     - 10.10.10.14
 os-extended-volumes:volumes_attached: []
 progress: 0
 security_groups:
 -   name: default
 status: ACTIVE
 tenant_id: 5d013ac5962749a49af7ff18c2fb228c
 updated: '2015-07-20T20:31:10Z'
 user_id: bfd3dbf1c8a242cd90884408de547bb9

Before you continue, you must do one more thing.

Destroy an instance

Cloud resources such as running instances that you no longer use can cost money. Destroy cloud resources to avoid unexpected expenses.

fog

../samples/fog/getting_started.rb

libcloud

../samples/libcloud/getting_started.py

pkgcloud

../samples/pkgcloud/getting_started.js

dotnet

../samples/dotnet/getting_started.cs

shade

../samples/shade/getting_started.py

If you list the instances again, the instance disappears.

Leave your shell open to use it for another instance deployment in this section.

Deploy the application to a new instance

Now that you know how to create and destroy instances, you can deploy the sample application. The instance that you create for the application is similar to the first instance that you created, but this time, we'll briefly introduce a few extra concepts.

Note

Internet connectivity from your cloud instance is required to download the application.

When you create an instance for the application, you'll want to give it a bit more information than you supplied to the bare instance that you just created and destroyed. We'll go into more detail in later sections, but for now, simply create the following resources so that you can feed them to the instance:

  • A key pair. To access your instance, you must import an SSH public key into OpenStack to create a key pair. OpenStack installs this key pair on the new instance. Typically, your public key is written to .ssh/id_rsa.pub. If you do not have an SSH public key file, follow these instructions first. We'll cover these instructions in depth in /introduction.

fog

In the following example, pub_key_file should be set to the location of your public SSH key file.

../samples/fog/getting_started.rb

libcloud

In the following example, pub_key_file should be set to the location of your public SSH key file.

../samples/libcloud/getting_started.py

<KeyPair name=demokey fingerprint=aa:bb:cc... driver=OpenStack>

pkgcloud

In the following example, pub_key_file should be set to the location of your public SSH key file.

../samples/pkgcloud/getting_started.js

shade

In the following example, pub_key_file should be set to the location of your public SSH key file.

../samples/shade/getting_started.py

  • Network access. By default, OpenStack filters all traffic. You must create a security group and apply it to your instance. The security group allows HTTP and SSH access. We'll go into more detail in /introduction.

fog

../samples/fog/getting_started.rb

libcloud

../samples/libcloud/getting_started.py

pkgcloud

../samples/pkgcloud/getting_started.js

shade

../samples/shade/getting_started.py

  • User data. During instance creation, you can provide user data to OpenStack to configure instances after they boot. The cloud-init service applies the user data to an instance. You must pre-install the cloud-init service on your chosen image. We'll go into more detail in /introduction.

fog

../samples/fog/getting_started.rb

libcloud

../samples/libcloud/getting_started.py

pkgcloud

../samples/pkgcloud/getting_started.js

shade

../samples/shade/getting_started.py

Now, you can boot and configure the instance.

Boot and configure an instance

Use the image, flavor, key pair, and userdata to create an instance. After you request the instance, wait for it to build.

fog

../samples/fog/getting_started.rb

libcloud

../samples/libcloud/getting_started.py

pkgcloud

../samples/pkgcloud/getting_started.js

shade

The shade framework can select and assign a free floating IP quickly

../samples/shade/getting_started.py

When the instance boots, the ex_userdata variable value instructs the instance to deploy the Fractals application.

Associate a floating IP for external connectivity

We'll cover networking in detail in /networking.

To see the application running, you must know where to look for it. By default, your instance has outbound network access. To make your instance reachable from the Internet, you need an IP address. By default in some cases, your instance is provisioned with a publicly rout-able IP address. In this case, you'll see an IP address listed under public_ips or private_ips when you list the instances. If not, you must create and attach a floating IP address to your instance.

fog

../samples/fog/getting_started.rb

This will get an ip address that you can assign to your instance with:

../samples/fog/getting_started.rb

libcloud

Use ex_list_floating_ip_pools() and select the first floating IP address pool. Allocate this pool to your project and attach it to your instance.

../samples/libcloud/getting_started.py

This code returns the floating IP address:

<OpenStack_1_1_FloatingIpAddress: id=4536ed1e-4374-4d7f-b02c-c3be2cb09b67, ip_addr=203.0.113.101, pool=<OpenStack_1_1_FloatingIpPool: name=floating001>, driver=<libcloud.compute.drivers.openstack.OpenStack_1_1_NodeDriver object at 0x1310b50>>

You can then attach it to the instance:

../samples/libcloud/getting_started.py

pkgcloud

Use getFloatingIps to check for unused addresses, selecting the first one if available, otherwise use allocateNewFloatingIp to allocate a new Floating IP to your project from the default address pool.

../samples/pkgcloud/getting_started.js

This code returns the floating IP address:

203.0.113.101

You can then attach it to the instance:

../samples/pkgcloud/getting_started.js

shade

../samples/shade/getting_started.py

Run the script to start the deployment.

Access the application

Deploying application data and configuration to the instance can take some time. Consider enjoying a cup of coffee while you wait. After the application deploys, you can visit the awesome graphic interface at the following link by using your preferred browser.

fog

../samples/fog/getting_started.rb

libcloud

../samples/libcloud/getting_started.py

pkgcloud

../samples/pkgcloud/getting_started.js

shade

../samples/shade/getting_started.py

Note

If you do not use floating IPs, substitute another IP address as appropriate

Next steps

Don't worry if these concepts are not yet completely clear. In /introduction, we explore these concepts in more detail.

  • /scaling_out: Learn how to scale your application
  • /durability: Learn how to use Object Storage to make your application durable
  • /block_storage: Migrate the database to block storage, or use the database-as-a-service component
  • /orchestration: Automatically orchestrate your application
  • /networking: Learn about complex networking
  • /advice: Get advice about operations
  • /craziness: Learn some crazy things that you might not think to do ;)

List the next sections here or simply reference introduction.

Complete code sample

The following file contains all of the code from this section of the tutorial. This comprehensive code sample lets you view and run the code as a single script.

Before you run this script, confirm that you have set your authentication information, the flavor ID, and image ID.

fog

../samples/fog/getting_started.rb

libcloud

../samples/libcloud/getting_started.py

pkgcloud

../samples/pkgcloud/getting_started.js

dotnet

../samples/dotnet/getting_started.cs

shade

../samples/libcloud/getting_started.py