Juju Charm - Heat
Go to file
Alex Kavanagh 0c500c5f92 Updates for testing period for 23.10 release
* charm-helpers sync for classic charms
* build.lock file for reactive charms
* ensure tox.ini is from release-tools
* Locked requirements using pip-compile:
  * existing (test-)requirements.txt ->
    (test-)requirements.in
  * pip-compile to *-py3[8|10].txt using python3.8
    and python3.10.
  * Updated tox.ini to use the appropriate merged
    requirements-*.txt files.
* Removal of lunar from metadata, charmcraft.yaml
  osci.yaml, tests.yaml and associated bundles.
* Locked libs and tests to stable/bobcat branches for:
  * charm-helpers
  * charms.openstack
  * zaza
  * zaza-openstack-tests

Change-Id: I25cf6df161cc63965ffe634c9081495e20b735dd
2023-11-02 15:28:29 -03:00
actions Sync libraries & common files prior to freeze 2020-10-06 18:51:21 +01:00
files Sync charm/ceph helpers, tox, and requirements 2019-09-30 22:41:48 -05:00
hooks Updates for testing period for 23.10 release 2023-11-02 15:28:29 -03:00
lib Update tox.ini files from release-tools gold copy 2016-09-09 19:42:39 +00:00
templates Add support for HAProxy L7 checks 2023-02-17 12:05:27 -03:00
tests Updates for testing period for 23.10 release 2023-11-02 15:28:29 -03:00
unit_tests Add support for HAProxy L7 checks 2023-02-17 12:05:27 -03:00
.gitignore Update to classic charms to build using charmcraft in CI 2022-02-17 12:30:08 -05:00
.gitreview Updates for testing period for 23.10 release 2023-11-02 15:28:29 -03: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
.zuul.yaml Add Antelope support 2023-03-01 16:56:51 +00:00
LICENSE Re-license charm as Apache-2.0 2016-07-01 17:23:55 +01:00
Makefile Updates for 20.08 cycle start for groovy and libs 2020-06-02 14:31:20 +01:00
README.md Apply HA section template to README 2020-05-29 13:55:56 -04:00
TODO first version 2013-11-19 13:14:57 +01:00
actions.yaml Series Upgrade 2018-10-15 16:25:06 -07:00
bindep.txt Add Kinetic and Zed support 2022-08-26 18:40:35 +00:00
charm-helpers-hooks.yaml Updates for testing period for 23.10 release 2023-11-02 15:28:29 -03:00
charmcraft.yaml Updates for testing period for 23.10 release 2023-11-02 15:28:29 -03:00
config.yaml Add 2023.2 Bobcat support 2023-08-02 14:19:22 -04: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
merged-requirements-py38.txt Updates for testing period for 23.10 release 2023-11-02 15:28:29 -03:00
merged-requirements-py310.txt Updates for testing period for 23.10 release 2023-11-02 15:28:29 -03:00
metadata.yaml Updates for testing period for 23.10 release 2023-11-02 15:28:29 -03:00
osci.yaml Add 2023.2 Bobcat support 2023-08-02 14:19:22 -04:00
rename.sh Update to classic charms to build using charmcraft in CI 2022-02-17 12:30:08 -05:00
requirements.in Updates for testing period for 23.10 release 2023-11-02 15:28:29 -03:00
revision added syslog functionality 2014-02-03 14:05:03 +01:00
test-requirements-py38.txt Updates for testing period for 23.10 release 2023-11-02 15:28:29 -03:00
test-requirements.in Updates for testing period for 23.10 release 2023-11-02 15:28:29 -03:00
tox.ini Updates for testing period for 23.10 release 2023-11-02 15:28:29 -03: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.

High availability

When more than one unit is deployed with the hacluster application the charm will bring up an HA active/active cluster.

There are two mutually exclusive high availability options: using virtual IP(s) or DNS. In both cases the hacluster subordinate charm is used to provide the Corosync and Pacemaker backend HA functionality.

See OpenStack high availability in the OpenStack Charms Deployment Guide for details.

Spaces

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.

Policy Overrides

Policy overrides is an advanced feature that allows an operator to override the default policy of an OpenStack service. The policies that the service supports, the defaults it implements in its code, and the defaults that a charm may include should all be clearly understood before proceeding.

Caution: It is possible to break the system (for tenants and other services) if policies are incorrectly applied to the service.

Policy statements are placed in a YAML file. This file (or files) is then (ZIP) compressed into a single file and used as an application resource. The override is then enabled via a Boolean charm option.

Here are the essential commands (filenames are arbitrary):

zip overrides.zip override-file.yaml
juju attach-resource heat policyd-override=overrides.zip
juju config heat use-policyd-override=true

See appendix Policy Overrides in the OpenStack Charms Deployment Guide for a thorough treatment of this feature.

Bugs

Please report bugs on Launchpad.

For general charm questions refer to the OpenStack Charm Guide.