Merge "Remove orchestration section from tempest-deployer-input.conf"

This commit is contained in:
Zuul 2021-02-16 08:58:43 +00:00 committed by Gerrit Code Review
commit 86f3e65a19
1 changed files with 2 additions and 7 deletions

View File

@ -865,7 +865,7 @@ def create_tempest_deployer_input(config_name='tempest-deployer-input.conf'):
# Create required sections
for section in ('auth', 'compute', 'compute-feature-enabled', 'identity',
'image', 'network', 'object-storage', 'orchestration',
'image', 'network', 'object-storage',
'volume', 'volume-feature-enabled'):
config.add_section(section)
@ -879,11 +879,6 @@ def create_tempest_deployer_input(config_name='tempest-deployer-input.conf'):
# set in [nova.serial_console]->enabled
config.set('compute-feature-enabled', 'console_output', 'false')
# Role required for users to be able to manage stacks
# (default: 'heat_stack_owner')
# keystone role-list returns this role
config.set('orchestration', 'stack_owner_role', 'swiftoperator')
# Name of the backend1 (must be declared in cinder.conf)
# (default: 'BACKEND_1')
# set in [cinder]->enabled_backends
@ -896,7 +891,7 @@ def create_tempest_deployer_input(config_name='tempest-deployer-input.conf'):
# Fix region value because TripleO is using non-standard value
for section in ('compute', 'identity', 'image', 'network',
'object-storage', 'orchestration', 'volume'):
'object-storage', 'volume'):
config.set(section, 'region', 'regionOne')
with open(config_name, 'w+') as config_file: