Files
api-site/openstack-firstapp/doc/source/appendix.rst
Sean M. Collins c219133376 Add "Writing your First OpenStack Application" Guide
Written during a book sprint in Taipei, from March 30th 2015
to April 3rd 2015.

Co-Authored-By: Sean M. Collins <sean@coreitpro.com>
Co-Authored-By: Tom Fifield <tom@openstack.org>
Co-Authored-By: James Dempsey <jamesd@catalyst.net.nz>
Co-Authored-By: Nick Chase <nchase@mirantis.com>
Co-Authored-By: Christian Berendt <berendt@b1-systems.de>

Implements blueprint openstack-firstapp

Change-Id: I55ae32d0c04f641c818bda4714d9bc691a98e6b1
2015-04-21 09:15:26 +10:00

1.4 KiB

Appendix

Bootstrapping Your Network

Most cloud providers will provision all of the required network objects necessary to boot an instance. An easy way to see if these have been created for you is to access the Network Topology section of the OpenStack dashboard.

Specify a network during instance build

code for creating a networking using code

Requirements of the First App Application For OpenStack

To be able to install the First App Application For OpenStack from PyPi you have to install the following packages:

On openSUSE/SLES:

sudo zypper install -y python-devel and python-pip

On Fedora/CentOS/RHEL:

sudo yum install -y python-devel and python-pip

On Debian/Ubuntu:

sudo apt-get update
sudo apt-get install -y python-dev and python-pip

To easify this process you can simply run the following command, which will run the commands above, depending on the used distribution.

curl -s http://git.openstack.org/cgit/stackforge/faafo/plain/contrib/install.sh | bash