Skip to content

Commit be348ef

Browse files
committed
Remove cell name loop since ospdo doesn't support multi cell currently
Also the loop is redundant in that case and might confuse customers Jira: https://issues.redhat.com/browse/OSPRH-19289
1 parent 78e1124 commit be348ef

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

docs_user/modules/proc_retrieving-topology-specific-service-configuration.adoc

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,7 @@ $ for CELL in $(echo $CELLS); do
3535
> TRIPLEO_PASSWORDS[$CELL]="$PASSWORD_FILE"
3636
> done
3737
ifeval::["{build_variant}" == "ospdo"]
38-
$ for CELL in $(echo $CELLS); do
39-
> oc get secret tripleo-passwords -o json | jq -r '.data["tripleo-overcloud-passwords.yaml"]' | base64 -d >"${TRIPLEO_PASSWORDS[$CELL]}"
40-
> done
38+
$ oc get secret tripleo-passwords -o json | jq -r '.data["tripleo-overcloud-passwords.yaml"]' | base64 -d >"${TRIPLEO_PASSWORDS[$CELLS]}"
4139
endif::[]
4240
$ declare -A SOURCE_DB_ROOT_PASSWORD
4341
$ for CELL in $(echo $CELLS); do

0 commit comments

Comments
 (0)