Skip to content

Commit 16738f2

Browse files
committed
Fix missing compute entries in uni05epsilon roles_groups_map
The DCN adoption support commit in ci-framework (78bf394d) changed the tripleo-ansible-inventory.yaml.j2 template to iterate over _stack.stack_nodes instead of roles_groups_map.items(). This requires all stack_nodes groups to have a corresponding entry in roles_groups_map. The uni05epsilon scenario defines cell1-osp-computes and cell2-osp-computes in stack_nodes but was missing them from roles_groups_map, causing an AnsibleUndefinedVariable error during the "Create tripleo ansible inventory" task for cell stacks. Signed-off-by: Roberto Alfieri <ralfieri@redhat.com>
1 parent 3edf1a9 commit 16738f2

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

scenarios/uni05epsilon.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,9 @@ hostname_groups_map:
3838
roles_groups_map:
3939
# map ansible groups to tripleo Role names
4040
osp-controllers: Controller
41+
cell1-osp-computes: Compute
4142
cell1-osp-controllers: CellController
43+
cell2-osp-computes: Compute
4244
cell2-osp-controllers: CellController
4345
# A new name for 'default' cell of OSP after adopting it into RHOSO
4446
default_cell_name: cell1

0 commit comments

Comments
 (0)