diff options
Diffstat (limited to 'ci')
-rw-r--r-- | ci/bundle_tpl/nova-compute.yaml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ci/bundle_tpl/nova-compute.yaml b/ci/bundle_tpl/nova-compute.yaml index 2f23816e..81803807 100644 --- a/ci/bundle_tpl/nova-compute.yaml +++ b/ci/bundle_tpl/nova-compute.yaml @@ -13,6 +13,6 @@ virt-type: lxd {% endif %} to: -{% for unit_id in to_select(opnfv.units - 1) %} - - "nodes={{ unit_id + 1 }}" +{% for unit_id in range(1, opnfv.units) %} + - "nodes={{ unit_id }}" {% endfor %} |