Merge "Add missing CephClient service to ControllerNoCeph role"

This commit is contained in:
Zuul 2018-01-08 18:21:29 +00:00 committed by Gerrit Code Review
commit 9fbcf20827
2 changed files with 2 additions and 0 deletions

View File

@ -36,6 +36,7 @@
- OS::TripleO::Services::CACerts
- OS::TripleO::Services::CeilometerAgentCentral
- OS::TripleO::Services::CeilometerAgentNotification
- OS::TripleO::Services::CephClient
- OS::TripleO::Services::CephExternal
- OS::TripleO::Services::CertmongerUser
- OS::TripleO::Services::CinderApi

View File

@ -300,6 +300,7 @@ def validate_controller_no_ceph_role(filename, tpl):
for role in tpl:
if role['name'] == 'ControllerNoCeph':
services = role['ServicesDefault']
services.remove('OS::TripleO::Services::CephClient')
services.append('OS::TripleO::Services::CephMds')
services.append('OS::TripleO::Services::CephMgr')
services.append('OS::TripleO::Services::CephMon')