ovn: Fix wording in limit check

Change-Id: Ib659203d83201d24054c52db0ab33c3f7ee2304f
This commit is contained in:
Michal Nasiadka 2023-10-20 11:05:12 +02:00
parent 79637cb99e
commit 6729799c9a

View File

@ -32,9 +32,10 @@
- name: Check if running on all OVN NB DB hosts
fail:
msg: >
Some hosts ({{ groups['ovn-nb-db'] | join(', ') }}) need database
bootstrapping, but not all OVN NB DB hosts are in the target
list. Stopping as it may be unsafe to proceed. Please run without --limit
Some hosts need database bootstrapping, but not all OVN NB DB hosts
({{ groups['ovn-nb-db'] | join(', ') }}) are in the target list
({{ groups['ovn-nb-db'] | difference(ansible_play_batch) | list | join(', ') }}).
Stopping as it may be unsafe to proceed. Please run without --limit
or --serial to bootstrap these hosts.
when:
- ovn_nb_db_cluster_exists
@ -84,9 +85,10 @@
- name: Check if running on all OVN SB DB hosts
fail:
msg: >
Some hosts ({{ groups['ovn-sb-db'] | join(', ') }}) need database
bootstrapping, but not all OVN SB DB hosts are in the target
list. Stopping as it may be unsafe to proceed. Please run without --limit
Some hosts need database bootstrapping, but not all OVN SB DB hosts
({{ groups['ovn-sb-db'] | join(', ') }}) are in the target list
({{ groups['ovn-sb-db'] | difference(ansible_play_batch) | list | join(', ') }}).
Stopping as it may be unsafe to proceed. Please run without --limit
or --serial to bootstrap these hosts.
when:
- ovn_sb_db_cluster_exists