@@ -120,11 +120,11 @@ content: |
120
120
121
121
#. If you deployed |onprem| 4.4.0 and later, you must also
122
122
download the Ubuntu 16.04 MongoDB Database Tools installation
123
- tarball. For example, to download the ``100.1.0 `` release:
123
+ tarball. For example, to download the ``{+mdbtools-version+} `` release:
124
124
125
125
.. code-block:: sh
126
126
127
- curl -OL https://fastdl.mongodb.org/tools/db/mongodb-database-tools-ubuntu1604-x86_64-100.1.0 .tgz
127
+ curl -OL https://fastdl.mongodb.org/tools/db/mongodb-database-tools-ubuntu1604-x86_64-{+mdbtools-version+} .tgz
128
128
129
129
.. tab:: OpenShift
130
130
:tabid: os
@@ -139,11 +139,11 @@ content: |
139
139
140
140
#. If you deployed |onprem| 4.4.0 and later, you must also
141
141
download the RHEL MongoDB Database Tools installation
142
- tarball. For example, to download the ``100.1.0 `` release:
142
+ tarball. For example, to download the ``{+mdbtools-version+} `` release:
143
143
144
144
.. code-block:: sh
145
145
146
- curl -OL https://fastdl.mongodb.org/tools/db/mongodb-database-tools-rhel<version>-x86_64-100.1.0 .tgz
146
+ curl -OL https://fastdl.mongodb.org/tools/db/mongodb-database-tools-rhel<version>-x86_64-{+mdbtools-version+} .tgz
147
147
148
148
---
149
149
@@ -167,7 +167,7 @@ content: |
167
167
.. tab:: Vanilla Kubernetes
168
168
:tabid: k8s
169
169
170
- To copy the MongoDB ``4.2.0`` installation archive to the
170
+ To copy the MongoDB installation archive to the
171
171
|onprem| PersistentVolume:
172
172
173
173
a. Copy the MongoDB Server installation tarball to the
@@ -188,29 +188,29 @@ content: |
188
188
kubectl cp mongodb-linux-x86_64-ubuntu1604-4.4.0.tgz \
189
189
"ops-manager-localmode-1:/mongodb-ops-manager/mongodb-releases/mongodb-linux-x86_64-ubuntu1604-4.4.0.tgz"
190
190
191
- #. If you deployed |onprem| 4.4.0 and later, copy the MongoDB
191
+ #. If you deployed |onprem| 4.4.0 and later, copy the MongoDB
192
192
Database Tools installation tarball to the |onprem|
193
- PersistentVolume. For example, to copy the ``100.1.0``
194
- release:
193
+ PersistentVolume. For example, to copy the
194
+ ``{+mdbtools-version+}`` release:
195
195
196
196
| Replica 0:
197
197
198
198
.. code-block:: sh
199
199
200
- kubectl cp mongodb-database-tools-ubuntu1604-x86_64-100.1.0 .tgz \
201
- "ops-manager-localmode-0:/mongodb-ops-manager/mongodb-releases/mongodb-database-tools-ubuntu1604-x86_64-100.1.0 .tgz"
200
+ kubectl cp mongodb-database-tools-ubuntu1604-x86_64-{+mdbtools-version+} .tgz \
201
+ "ops-manager-localmode-0:/mongodb-ops-manager/mongodb-releases/mongodb-database-tools-ubuntu1604-x86_64-{+mdbtools-version+} .tgz"
202
202
203
203
| Replica 1:
204
204
205
205
.. code-block:: sh
206
206
207
- kubectl cp mongodb-database-tools-ubuntu1604-x86_64-100.1.0 .tgz \
208
- "ops-manager-localmode-1:/mongodb-ops-manager/mongodb-releases/mongodb-database-tools-ubuntu1604-x86_64-100.1.0 .tgz"
207
+ kubectl cp mongodb-database-tools-ubuntu1604-x86_64-{+mdbtools-version+} .tgz \
208
+ "ops-manager-localmode-1:/mongodb-ops-manager/mongodb-releases/mongodb-database-tools-ubuntu1604-x86_64-{+mdbtools-version+} .tgz"
209
209
210
210
.. tab:: OpenShift
211
211
:tabid: os
212
212
213
- To copy the MongoDB ``4.2.0`` installation archive to the
213
+ To copy the MongoDB installation archive to the
214
214
|onprem| PersistentVolume:
215
215
216
216
a. Copy the MongoDB Server installation tarball to the
@@ -231,24 +231,24 @@ content: |
231
231
oc rsync "ops-manager-localmode-1:/mongodb-ops-manager/mongodb-releases/mongodb-linux-x86_64-rhel<version>-4.4.0.tgz" \
232
232
mongodb-linux-x86_64-rhel<version>-4.4.0.tgz
233
233
234
- #. If you deployed |onprem| 4.4.0 and later, copy the MongoDB
234
+ #. If you deployed |onprem| 4.4.0 and later, copy the MongoDB
235
235
Database Tools installation tarball to the |onprem|
236
- PersistentVolume. For example, to copy the ``100.1.0``
237
- release:
236
+ PersistentVolume. For example, to copy the
237
+ ``{+mdbtools-version+}`` release:
238
238
239
239
| Replica 0:
240
240
241
241
.. code-block:: sh
242
242
243
- kubectl cp mongodb-database-tools-ubuntu1604-x86_64-100.1.0 .tgz \
244
- "ops-manager-localmode-0:/mongodb-ops-manager/mongodb-releases/mongodb-database-tools-ubuntu1604-x86_64-100.1.0 .tgz"
243
+ kubectl cp mongodb-database-tools-ubuntu1604-x86_64-{+mdbtools-version+} .tgz \
244
+ "ops-manager-localmode-0:/mongodb-ops-manager/mongodb-releases/mongodb-database-tools-ubuntu1604-x86_64-{+mdbtools-version+} .tgz"
245
245
246
246
| Replica 1:
247
247
248
248
.. code-block:: sh
249
249
250
- kubectl cp mongodb-database-tools-rhel<version>-x86_64-100.1.0 .tgz \
251
- "ops-manager-localmode-1:/mongodb-ops-manager/mongodb-releases/mongodb-database-tools-rhel<version>-x86_64-100.1.0 .tgz"
250
+ kubectl cp mongodb-database-tools-rhel<version>-x86_64-{+mdbtools-version+} .tgz \
251
+ "ops-manager-localmode-1:/mongodb-ops-manager/mongodb-releases/mongodb-database-tools-rhel<version>-x86_64-{+mdbtools-version+} .tgz"
252
252
253
253
---
254
254
title : " Deploy a MongoDB Database Resource."
0 commit comments