Try adding greenwave and waiverdb to the stg fedmsg routing policy.

This commit is contained in:
Ralph Bean 2017-10-19 15:19:40 +00:00
parent c81164c668
commit e9cbb411ec
6 changed files with 65 additions and 2 deletions

View file

@ -9,9 +9,9 @@ def invert_fedmsg_policy(groups, vars, env):
"""
if env == 'staging':
hosts = groups['staging'] + groups['fedmsg-qa-network-stg']
hosts = groups['staging'] + groups['fedmsg-qa-network-stg'] + groups['openshift-pseudohosts-stg']
else:
hosts = [h for h in groups['all'] if h not in groups['staging']]
hosts = [h for h in groups['all'] if h not in groups['staging'] + groups['openshift-pseudohosts-stg']]
inverted = {}
for host in hosts: