Charm Layer - OpenStack API layer
Go to file
Camille Rodriguez 30009bad5b Avoid pollution and false positives with tox.ini
- removed build section in tox because a layer does not need to be
built
- removing sitepackages in tox.ini to avoid test env pollution
- skip_missing_interpreters in tox.ini set to False to avoid false
positives by skipping missing interpreters.

Change-Id: I4d7814a557bb17afb932ddcff6c75f2a8f61f51e
2019-08-27 17:26:30 -04:00
reactive Add vault cert support 2018-05-15 11:09:44 +00:00
.gitignore Add basic tox targets to verify layer build and mock out pep8 for now 2016-07-01 10:23:31 +01:00
.gitreview OpenDev Migration Patch 2019-04-19 19:45:02 +00:00
.zuul.yaml import zuul job settings from project-config 2018-09-11 13:15:25 -04:00
config.yaml Update HAProxy default timeout values 2017-12-11 10:53:20 -08:00
layer.yaml Add vault cert support 2018-05-15 11:09:44 +00:00
LICENSE Switch licensing 2016-07-01 10:10:46 +01:00
metadata.yaml Merge pull request #4 from javacruft/tags 2016-06-22 10:26:26 +01:00
README.md Fix typo in README.md 2017-01-06 19:59:13 +00:00
requirements.txt Add basic tox targets to verify layer build and mock out pep8 for now 2016-07-01 10:23:31 +01:00
test-requirements.txt Add SSL cert/key config options 2016-07-12 19:09:37 +00:00
tox.ini Avoid pollution and false positives with tox.ini 2019-08-27 17:26:30 -04:00

Overview

This layer provides the base layer for OpenStack charms that are will deploy API services, and provides all of the core functionality for:

  • HA (using the hacluster charm)
  • SSL (using configuration options or keystone for certificates)
  • Juju 2.0 network space support for API endpoints
  • Configuration based network binding of API endpoints

To use this layer, including the following in the layer.yaml of your charm:

include: ['layer:openstack-api']

And then read the new API charm guide for details on how to use this layer in-conjuction with the charms.openstack Python module to quickly and easily put together a new API charm.