Metadata-Version: 1.1
Name: warm
Version: 0.1.12
Summary: Deploy a simple OpenStack environment from template
Home-page: https://github.com/sahid/warm.git
Author: Sahid Orentino Ferdjaoui (Cloudwatt)
Author-email: sahid.ferdjaoui@cloudwatt.com
License: Apache License 2.0
Description: 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.
        
        How to use it:
        ==============
        
          - First to install it use pip (don't forget to check for dependances).
        $ pip install warm
          
          - We are considering your env are already configured.
        $ export | grep OS_
        declare -x OS_AUTH_URL="https://identity/v2.0"
        declare -x OS_PASSWORD="*******"
        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
        server:
        - name: clt
          flavor: m1.small
          image: cirros-0.3.1-x86_64-uec # You may have to configure this option.
        FILE
        
        - We can now run it.
        $ warm my-tpl.yaml
        
        To get more information about a template syntaxe, see condig.yaml.sample.
        
        Notes:
        ======
          You may need to install packages:
            build-essential
            python-dev
            python-pip
Keywords: openstack,cloudwatt,deploy,cloud
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Natural Language :: English
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python
Classifier: Environment :: OpenStack
