Inconsistent flavor type fix in 'Getting started' chapter for firstapp.

In 'Flavors and images' section, different flavor was suggested in text
and different used in command. Bug fixed for libcloud, dotnet and pkgcloud SDKs.

Change-Id: I69cb5e92eee56190f32a11f75325daf05d37462c
Closes-Bug: #1463546
This commit is contained in:
Stanislaw Szydlo 2015-08-21 14:46:35 +02:00 committed by Diane Fleming
parent 4542d7f98a
commit 1713281304
4 changed files with 9 additions and 9 deletions

View File

@ -59,7 +59,7 @@ namespace openstack
_image.Name));
// step-5
var flavor_id = "42";
var flavor_id = "2";
var _flavor = conn.GetFlavor (flavor_id, region: region);
Console.WriteLine (string.Format(
"Flavor Id: {0} - Flavor Name: {1}",

View File

@ -32,7 +32,7 @@ image = conn.get_image(image_id)
print(image)
# step-5
flavor_id = '3'
flavor_id = '2'
flavor = conn.ex_get_size(flavor_id)
print(flavor)

View File

@ -50,7 +50,7 @@ conn.getImage(image_id, function(err, image) {
// step-5
flavor_id = '3';
flavor_id = 'cba9ea52-8e90-468b-b8c2-777a94d81ed3';
conn.getFlavor(flavor_id, function(err, flavor) {
console.log("id: " + flavor.id);
console.log("name: " + flavor.name);

View File

@ -27,7 +27,7 @@ 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 <http://en.wikipedia.org/wiki/Fractal>`_ . We show you this
`fractal images <http://en.wikipedia.org/wiki/Fractal>`_. We show you this
application in its entirety so that you can compare it to a second, more
robust, application.
@ -593,7 +593,7 @@ Next, choose which flavor you want to use:
.. code-block:: python
<OpenStackNodeSize: id=3, name=m1.medium, ram=4096, disk=40, bandwidth=None, price=0.0, driver=OpenStack, vcpus=2, ...>
<OpenStackNodeSize: id=2, name=m1.small, ram=2048, disk=20, bandwidth=None, price=0.0, driver=OpenStack, vcpus=1, ...>
.. only:: pkgcloud
@ -606,7 +606,7 @@ Next, choose which flavor you want to use:
.. code-block:: none
id: 3
id: cba9ea52-8e90-468b-b8c2-777a94d81ed3
name: m1.small
ram: 2048
disk: 20
@ -624,12 +624,12 @@ Next, choose which flavor you want to use:
.. code-block:: none
Flavor Id: 42 - Flavor Name: m1.nano
Flavor Id: 2 - Flavor Name: m1.small
.. only:: shade
Since shade can either use the ID or the name in most API calls,
let's specify the name for the flavor.
Because shade accepts either the ID or name in most API calls, specify the
name for the flavor:
.. literalinclude:: ../samples/shade/getting_started.py
:start-after: step-5