-
Bug
-
Resolution: Unresolved
-
Undefined
-
None
-
rhos-18.0.z
-
None
-
False
-
-
False
-
?
-
rhos-ops-day1day2-upgrades
-
None
-
-
-
-
Moderate
In the step:
"Get the count of source databases with the NOK (not-OK) status:"
The code is:
for CELL in $(echo $CELLS); do > oc rsh mariadb-copy-data mysql -h "${SOURCE_MARIADB_IP[$CELL]}" -uroot -p"${SOURCE_DB_ROOT_PASSWORD[$CELL]}" -e "SHOW databases;" > end
And as result:

The code should end with "done" not "end":
for CELL in $(echo $CELLS); do oc rsh mariadb-copy-data mysql -h "${SOURCE_MARIADB_IP[$CELL]}" -uroot -p"${SOURCE_DB_ROOT_PASSWORD[$CELL]}" -e "SHOW databases;" done