Review of the readme

This commit is contained in:
Sahid Orentino Ferdjaoui 2013-11-22 23:11:45 +01:00
parent 24a91c22f1
commit 4d620c49a5
2 changed files with 17 additions and 10 deletions

25
README
View File

@ -1,9 +1,10 @@
Warm - To deploy a simple OpenStack environment from template
=============================================================
This project doesn't claim to be a solution to replace heat,
it just try to expose a simple way to deploy small
environement from template.
This project doesn't claim to be a solution like heat, it just try to expose
Api by the way of templates. It's a simple way to deploy small environments.
Please report me any bugs or features. I will be happy to work on.
How to use it:
==============
@ -19,15 +20,15 @@ declare -x OS_TENANT_ID="ea262aa012f244f8af2d1687977aaa81"
declare -x OS_TENANT_NAME="my-project"
declare -x OS_USERNAME="sferdjaoui"
- We are no ready to create our first template.
$ cat > my-tpl.yaml <<FILE
- We are now ready to create our first template.
$ cat > my-tpl.yaml <<EOF
server:
- name: clt
- name: srv
flavor: m1.small
image: cirros-0.3.1-x86_64-uec # You may have to configure this option.
FILE
EOF
- We can now run it.
- We can now run warm.
$ warm my-tpl.yaml
To get more information about a template syntaxe, see config.yaml.sample.
@ -38,5 +39,11 @@ Notes:
build-essential
python-dev
python-pip
cloud-utils
cloud-utils # write-mime-multipart
libssl-dev
Roadmap:
========
Add write-mime-multipart in the package
Add floating-ip
...

View File

@ -28,7 +28,7 @@ from neutronclient.neutron import client as neutron #TODO(sahid): Needs to remov
from warm import components
__version__ = "0.1.20"
__version__ = "0.1.21"
DEFAULT_LOGFILE = "/dev/null"
DEFAULT_LOGLEVEL = logging.DEBUG