Merge "Make hidden stack tag configurable"

This commit is contained in:
Zuul 2018-04-25 15:24:49 +00:00 committed by Gerrit Code Review
commit 430a315eb6
2 changed files with 4 additions and 2 deletions

View File

@ -153,7 +153,9 @@ HeatGroup = [
cfg.StrOpt('heat_config_notify_script',
default=('heat-config-notify'),
help="Path to the script heat-config-notify"),
cfg.StrOpt('hidden_stack_tag',
default='data-processing-cluster',
help="Tag to be considered as hidden for stack tags tests"),
]
heat_features_group = cfg.OptGroup(

View File

@ -72,7 +72,7 @@ resources:
@decorators.idempotent_id('5ed79584-0684-4f9c-ae8e-44a8f874ec79')
def test_hidden_stack(self):
# Stack create with hidden stack tag
tags = 'foo,hidden'
tags = 'foo,%s' % self.conf.hidden_stack_tag
self.stack_create(
template=self.template,
tags=tags)