Juju Charm - Heat
Go to file
Corey Bryant 06f8577a61 Update rabbit driver config options
The stein version of python-oslo.messaging (9.0.0+) has removed
the following config options from the [oslo_messaging_rabbit]
section:

rabbit_host, rabbit_port, rabbit_hosts, rabbit_userid,
rabbit_password, rabbit_virtual_host rabbit_max_retries, and
rabbit_durable_queues.

The above change requires a sync from charm-helpers.

Additionally the transport_url directive has been moved to the
[DEFAULT] section.

These have been deprecated since Ocata, therefore this change
will be provided to pre-Stein templates in order to drop
deprecation warnings.

See release notes at:
https://docs.openstack.org/releasenotes/oslo.messaging/index.html

Change-Id: I4e6bf7fa75bc2b445e2a7047ef7ca14a36478e78
Closes-Bug: #1817672
2019-02-27 09:41:38 +00:00
actions Series Upgrade 2018-10-15 16:25:06 -07:00
hooks Update rabbit driver config options 2019-02-27 09:41:38 +00:00
lib Update tox.ini files from release-tools gold copy 2016-09-09 19:42:39 +00:00
templates Update rabbit driver config options 2019-02-27 09:41:38 +00:00
tests Update functional test definitions 2019-02-06 14:48:39 -06:00
unit_tests Use chelper generate_ha_relation_data for ha rel 2018-12-04 11:34:22 +00:00
.coveragerc added tests 2013-11-27 13:06:15 +01:00
.gitignore Series Upgrade 2018-10-15 16:25:06 -07:00
.gitreview Add gitreview prior to migration to openstack 2016-02-24 21:53:31 +00:00
.project Add support for application version 2016-09-20 12:15:23 +01:00
.pydevproject Add support for application version 2016-09-20 12:15:23 +01:00
.stestr.conf Update for Python 3 execution 2017-11-20 15:11:08 -08:00
.testr.conf Add tox support 2015-11-02 11:18:46 +00:00
.zuul.yaml import zuul job settings from project-config 2018-09-11 13:10:30 -04:00
LICENSE Re-license charm as Apache-2.0 2016-07-01 17:23:55 +01:00
Makefile Tests dir no longer need copy of charmhelpers 2018-10-10 12:40:39 +00:00
README.md doc: Drop Contact Info section 2017-09-21 17:12:45 +01:00
TODO first version 2013-11-19 13:14:57 +01:00
actions.yaml Series Upgrade 2018-10-15 16:25:06 -07:00
charm-helpers-hooks.yaml Update charm-helpers-hooks.yaml and sync ch 2019-02-12 15:57:03 -08:00
config.yaml Remove deploy from source support 2018-01-10 11:41:00 +00:00
copyright Re-license charm as Apache-2.0 2016-07-01 17:23:55 +01:00
hardening.yaml Add hardening support 2016-03-24 10:39:29 +00:00
icon.svg Update charm icon 2017-08-02 16:01:41 +01:00
metadata.yaml Add support for subordinate charms 2018-07-23 18:01:25 +02:00
requirements.txt Update requirements 2018-10-03 11:41:27 -05:00
revision added syslog functionality 2014-02-03 14:05:03 +01:00
test-requirements.txt Update requirements 2018-10-03 11:41:27 -05:00
tox.ini fix tox python3 overrides 2018-11-02 01:03:26 +00:00

README.md

Overview

Heat is the main project in the OpenStack Orchestration program. It implements an orchestration engine to launch multiple composite cloud applications based on templates in the form of text files that can be treated like code.

This charm deploys the Heat infrastructure.

Usage

Heat requires the existence of the other core OpenStack services deployed via Juju charms, specifically: mysql, rabbitmq-server, keystone and nova-cloud-controller. The following assumes these services have already been deployed.

After deployment of the cloud, the domain-setup action must be run to configure required domains, roles and users in the cloud for Heat stacks.

For juju 2.x deployments use:

juju run-action heat/0 domain-setup

If using juju 1.x run:

juju action do heat/0 domain-setup

This is only required for >= OpenStack Kilo.

HA/Clustering

There are two mutually exclusive high availability options: using virtual IP(s) or DNS. In both cases, a relationship to hacluster is required which provides the corosync back end HA functionality.

To use virtual IP(s) the clustered nodes must be on the same subnet such that the VIP is a valid IP on the subnet for one of the node's interfaces and each node has an interface in said subnet. The VIP becomes a highly-available API endpoint.

At a minimum, the config option 'vip' must be set in order to use virtual IP HA. If multiple networks are being used, a VIP should be provided for each network, separated by spaces. Optionally, vip_iface or vip_cidr may be specified.

To use DNS high availability there are several prerequisites. However, DNS HA does not require the clustered nodes to be on the same subnet. Currently the DNS HA feature is only available for MAAS 2.0 or greater environments. MAAS 2.0 requires Juju 2.0 or greater. The clustered nodes must have static or "reserved" IP addresses registered in MAAS. The DNS hostname(s) must be pre-registered in MAAS before use with DNS HA.

At a minimum, the config option 'dns-ha' must be set to true and at least one of 'os-public-hostname', 'os-internal-hostname' or 'os-internal-hostname' must be set in order to use DNS HA. One or more of the above hostnames may be set.

The charm will throw an exception in the following circumstances: If neither 'vip' nor 'dns-ha' is set and the charm is related to hacluster If both 'vip' and 'dns-ha' are set as they are mutually exclusive If 'dns-ha' is set and none of the os-{admin,internal,public}-hostname(s) are set

Network Space support

This charm supports the use of Juju Network Spaces, allowing the charm to be bound to network space configurations managed directly by Juju. This is only supported with Juju 2.0 and above.

API endpoints can be bound to distinct network spaces supporting the network separation of public, internal and admin endpoints.

Access to the underlying MySQL instance can also be bound to a specific space using the shared-db relation.

To use this feature, use the --bind option when deploying the charm:

juju deploy heat --bind "public=public-space internal=internal-space admin=admin-space shared-db=internal-space"

alternatively these can also be provided as part of a juju native bundle configuration:

heat:
  charm: cs:xenial/heat
  num_units: 1
  bindings:
    public: public-space
    admin: admin-space
    internal: internal-space
    shared-db: internal-space

NOTE: Spaces must be configured in the underlying provider prior to attempting to use them.

NOTE: Existing deployments using os-*-network configuration options will continue to function; these options are preferred over any network space binding provided if set.