Skip to content

Commit f7f199d

Browse files
Merge pull request #1135 from klgill/additional-copybutton-fixes
additional copy fixes from downstream
2 parents aef6916 + e104616 commit f7f199d

File tree

3 files changed

+31
-28
lines changed

3 files changed

+31
-28
lines changed

docs_user/modules/proc_adopting-compute-services-to-the-data-plane.adoc

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -93,35 +93,35 @@ $ RENAMED_CELLS="cell1 cell2 $DEFAULT_CELL_NAME"
9393
9494
$ declare -A COMPUTES_CELL1
9595
$ export COMPUTES_CELL1=( <2>
96-
["standalone.localdomain"]="192.168.122.100" <3>
97-
# <compute1> <4>
98-
# <compute2>
99-
# <compute3>
100-
)
96+
> ["standalone.localdomain"]="192.168.122.100" <3>
97+
> # <compute1> <4>
98+
> # <compute2>
99+
> # <compute3>
100+
>)
101101
$ declare -A COMPUTES_CELL2
102102
$ export COMPUTES_CELL2=(
103-
# ...
104-
)
103+
> # ...
104+
>)
105105
$ declare -A COMPUTES_CELL3
106106
$ export COMPUTES_CELL3=(
107-
# ... <5>
108-
)
109-
# ...
107+
> # ... <5>
108+
>)
109+
># ...
110110
111111
$ declare -A COMPUTES_API_CELL1
112112
$ export COMPUTES_API_CELL1=( <6>
113-
["standalone.localdomain"]="172.17.0.100"
114-
# ...
115-
)
116-
# ...
113+
> ["standalone.localdomain"]="172.17.0.100"
114+
> # ...
115+
>)
116+
># ...
117117
118118
$ NODESETS=""
119119
$ for CELL in $(echo $RENAMED_CELLS); do
120-
ref="COMPUTES_$(echo ${CELL}|tr '[:lower:]' '[:upper:]')"
121-
eval names=\${!${ref}[@]}
122-
[ -z "$names" ] && continue
123-
NODESETS="'openstack-${CELL}', $NODESETS" <7>
124-
done
120+
> ref="COMPUTES_$(echo ${CELL}|tr '[:lower:]' '[:upper:]')"
121+
> eval names=\${!${ref}[@]}
122+
> [ -z "$names" ] && continue
123+
> NODESETS="'openstack-${CELL}', $NODESETS" <7>
124+
>done
125125
$ NODESETS="[${NODESETS%,*}]"
126126
----
127127
+

docs_user/modules/proc_rolling-back-the-control-plane-adoption.adoc

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -158,13 +158,13 @@ $ oc patch openstackcontrolplane openstack --type=merge --patch '
158158
> metadata:
159159
> finalizers: []
160160
> ' || true
161-
162-
while oc get pod | grep rabbitmq-server-0; do
163-
sleep 2
164-
done
165-
while oc get pod | grep openstack-galera-0; do
166-
sleep 2
167-
done
161+
>
162+
>while oc get pod | grep rabbitmq-server-0; do
163+
> sleep 2
164+
>done
165+
>while oc get pod | grep openstack-galera-0; do
166+
> sleep 2
167+
>done
168168
169169
$ oc delete --ignore-not-found=true --wait=false pod mariadb-copy-data
170170
$ oc delete --ignore-not-found=true --wait=false pvc mariadb-data

docs_user/modules/proc_updating-the-object-storage-endpoints.adoc

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,11 @@ You must create or update the {object_storage_first_ref} endpoints to configure
1111
. List the current swift endpoints and service:
1212
+
1313
----
14-
$ oc rsh openstackclient openstack endpoint list | grep "swift.*object"
15-
$ oc rsh openstackclient openstack service list | grep "swift.*object"
14+
$ oc rsh openstackclient openstack endpoint list | grep "swift.*object"
15+
----
16+
+
17+
----
18+
$ oc rsh openstackclient openstack service list | grep "swift.*object"
1619
----
1720

1821
. If the service and endpoints do not exist, create the missing swift resources:

0 commit comments

Comments
 (0)