diff options
author | Dan Prince <dprince@redhat.com> | 2017-02-20 13:53:57 -0500 |
---|---|---|
committer | Dan Prince <dprince@redhat.com> | 2017-02-20 13:53:57 -0500 |
commit | 5fbe3853fbd1e4f22204f452156c2e78f73a5c1c (patch) | |
tree | 95bdc590c6e86b3d7efcc97ec956a7314ed5199d /manifests/profile/base/database | |
parent | 47969551159a81cd1a050c3b345892aec0bf7d96 (diff) |
Ironic inspector support
This includes a new ironic-inspector profile, and updates
to the mysql and keystone profiles so that a database
and endpoints are also created when the inspector
is enabled.
Change-Id: I4a71a95efb87a10528df0600277768969a32117b
Diffstat (limited to 'manifests/profile/base/database')
-rw-r--r-- | manifests/profile/base/database/mysql.pp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/manifests/profile/base/database/mysql.pp b/manifests/profile/base/database/mysql.pp index d3c3f21..dcd1b7f 100644 --- a/manifests/profile/base/database/mysql.pp +++ b/manifests/profile/base/database/mysql.pp @@ -167,6 +167,9 @@ class tripleo::profile::base::database::mysql ( if hiera('ironic_api_enabled', false) { include ::ironic::db::mysql } + if hiera('ironic_inspector_enabled', false) { + include ::ironic::inspector::db::mysql + } if hiera('keystone_enabled', false) { include ::keystone::db::mysql } |