Add missing octavia auth include to keystone manifest

This patch adds the appropriate include to make sure that appropriate
keystone user, services, etc. are created when octavia is selected.

Closes-bug: #1680588

Change-Id: I0b6d657a0300538292223923d8808c23f936c193
This commit is contained in:
Brent Eagles 2017-04-04 04:56:20 -02:30
parent 32620c52c8
commit 23e723255c
2 changed files with 6 additions and 0 deletions

View File

@ -294,6 +294,9 @@ class tripleo::profile::base::keystone (
if hiera('nova_placement_enabled', false) {
include ::nova::keystone::auth_placement
}
if hiera('octavia_api_enabled', false) {
include ::octavia::keystone::auth
}
if hiera('panko_api_enabled', false) {
include ::panko::keystone::auth
}

View File

@ -0,0 +1,3 @@
---
fixes:
- Octavia is now properly registered with keystone when deployed.