Metadata-Version: 2.1
Name: heat
Version: 9.0.8.dev22
Summary: OpenStack Orchestration
Home-page: http://docs.openstack.org/developer/heat/
Author: OpenStack
Author-email: openstack-dev@lists.openstack.org
License: UNKNOWN
Platform: UNKNOWN
Classifier: Environment :: OpenStack
Classifier: Intended Audience :: Information Technology
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Requires-Dist: pbr (!=2.1.0,>=2.0.0)
Requires-Dist: Babel (!=2.4.0,>=2.3.4)
Requires-Dist: croniter (>=0.3.4)
Requires-Dist: cryptography (!=2.0,>=1.6)
Requires-Dist: debtcollector (>=1.2.0)
Requires-Dist: eventlet (!=0.18.3,!=0.20.1,<0.21.0,>=0.18.2)
Requires-Dist: keystoneauth1 (>=3.1.0)
Requires-Dist: keystonemiddleware (>=4.12.0)
Requires-Dist: lxml (!=3.7.0,>=2.3)
Requires-Dist: netaddr (!=0.7.16,>=0.7.13)
Requires-Dist: openstacksdk (>=0.9.17)
Requires-Dist: oslo.cache (>=1.5.0)
Requires-Dist: oslo.config (!=4.3.0,!=4.4.0,>=4.0.0)
Requires-Dist: oslo.concurrency (>=3.8.0)
Requires-Dist: oslo.context (>=2.14.0)
Requires-Dist: oslo.db (>=4.24.0)
Requires-Dist: oslo.i18n (!=3.15.2,>=2.1.0)
Requires-Dist: oslo.log (>=3.22.0)
Requires-Dist: oslo.messaging (!=5.25.0,>=5.24.2)
Requires-Dist: oslo.middleware (>=3.27.0)
Requires-Dist: oslo.policy (>=1.23.0)
Requires-Dist: oslo.reports (>=0.6.0)
Requires-Dist: oslo.serialization (!=2.19.1,>=1.10.0)
Requires-Dist: oslo.service (>=1.10.0)
Requires-Dist: oslo.utils (>=3.20.0)
Requires-Dist: osprofiler (>=1.4.0)
Requires-Dist: oslo.versionedobjects (>=1.17.0)
Requires-Dist: PasteDeploy (>=1.5.0)
Requires-Dist: pycrypto (>=2.6)
Requires-Dist: aodhclient (>=0.7.0)
Requires-Dist: python-barbicanclient (!=4.5.0,!=4.5.1,>=4.0.0)
Requires-Dist: python-ceilometerclient (>=2.5.0)
Requires-Dist: python-cinderclient (>=3.1.0)
Requires-Dist: python-designateclient (>=1.5.0)
Requires-Dist: python-glanceclient (>=2.8.0)
Requires-Dist: python-heatclient (>=1.6.1)
Requires-Dist: python-keystoneclient (>=3.8.0)
Requires-Dist: python-magnumclient (>=2.0.0)
Requires-Dist: python-manilaclient (>=1.12.0)
Requires-Dist: python-mistralclient (>=3.1.0)
Requires-Dist: python-monascaclient (>=1.7.0)
Requires-Dist: python-neutronclient (>=6.3.0)
Requires-Dist: python-novaclient (>=9.0.0)
Requires-Dist: python-openstackclient (>=3.11.0)
Requires-Dist: python-saharaclient (>=1.1.0)
Requires-Dist: python-senlinclient (>=1.1.0)
Requires-Dist: python-swiftclient (>=3.2.0)
Requires-Dist: python-troveclient (>=2.2.0)
Requires-Dist: python-zaqarclient (>=1.0.0)
Requires-Dist: python-zunclient (>=0.2.0)
Requires-Dist: pytz (>=2013.6)
Requires-Dist: PyYAML (>=3.10.0)
Requires-Dist: requests (>=2.14.2)
Requires-Dist: tenacity (>=3.2.1)
Requires-Dist: Routes (>=2.3.1)
Requires-Dist: six (>=1.9.0)
Requires-Dist: SQLAlchemy (!=1.1.5,!=1.1.6,!=1.1.7,!=1.1.8,>=1.0.10)
Requires-Dist: sqlalchemy-migrate (>=0.11.0)
Requires-Dist: stevedore (>=1.20.0)
Requires-Dist: WebOb (>=1.7.1)
Requires-Dist: yaql (>=1.1.0)

========================
Team and repository tags
========================

.. image:: http://governance.openstack.org/badges/heat.svg
    :target: http://governance.openstack.org/reference/tags/index.html

.. Change things from this point on

====
Heat
====

Heat is a service to orchestrate multiple composite cloud applications using
templates, through both an OpenStack-native REST API and a
CloudFormation-compatible Query API.

Why heat? It makes the clouds rise and keeps them there.

Getting Started
---------------

If you'd like to run from the master branch, you can clone the git repo:

    git clone https://git.openstack.org/openstack/heat


* Wiki: http://wiki.openstack.org/Heat
* Developer docs: http://docs.openstack.org/developer/heat
* Template samples: https://git.openstack.org/cgit/openstack/heat-templates
* Agents: https://git.openstack.org/cgit/openstack/heat-agents

Python client
-------------
https://git.openstack.org/cgit/openstack/python-heatclient

References
----------
* http://docs.amazonwebservices.com/AWSCloudFormation/latest/APIReference/API_CreateStack.html
* http://docs.amazonwebservices.com/AWSCloudFormation/latest/UserGuide/create-stack.html
* http://docs.amazonwebservices.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html
* http://www.oasis-open.org/committees/tc_home.php?wg_abbrev=tosca

We have integration with
------------------------
* https://git.openstack.org/cgit/openstack/python-novaclient (instance)
* https://git.openstack.org/cgit/openstack/python-keystoneclient (auth)
* https://git.openstack.org/cgit/openstack/python-swiftclient (s3)
* https://git.openstack.org/cgit/openstack/python-neutronclient (networking)
* https://git.openstack.org/cgit/openstack/python-ceilometerclient (metering)
* https://git.openstack.org/cgit/openstack/python-aodhclient (alarming service)
* https://git.openstack.org/cgit/openstack/python-cinderclient (storage service)
* https://git.openstack.org/cgit/openstack/python-glanceclient (image service)
* https://git.openstack.org/cgit/openstack/python-troveclient (database as a Service)
* https://git.openstack.org/cgit/openstack/python-saharaclient (hadoop cluster)
* https://git.openstack.org/cgit/openstack/python-barbicanclient (key management service)
* https://git.openstack.org/cgit/openstack/python-designateclient (DNS service)
* https://git.openstack.org/cgit/openstack/python-magnumclient (container service)
* https://git.openstack.org/cgit/openstack/python-manilaclient (shared file system service)
* https://git.openstack.org/cgit/openstack/python-mistralclient (workflow service)
* https://git.openstack.org/cgit/openstack/python-zaqarclient (messaging service)
* https://git.openstack.org/cgit/openstack/python-monascaclient (monitoring service)
* https://git.openstack.org/cgit/openstack/python-senlinclient (clustering service)



