Skip to content

Commit 3d8ad22

Browse files
Merge pull request #1055 from openstack-k8s-operators/remove_ospdo_cell_loop
Remove cell name loop since ospdo doesn't support multi cell currently
2 parents 1ad3004 + be348ef commit 3d8ad22

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)