File tree Expand file tree Collapse file tree 1 file changed +9
-6
lines changed Expand file tree Collapse file tree 1 file changed +9
-6
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ content: |
23
23
name: <my-replica-set>
24
24
spec:
25
25
members: 3
26
- version: "4.0.4 "
26
+ version: "4.4.0 "
27
27
project: my-project
28
28
credentials: my-credentials
29
29
type: ReplicaSet
@@ -45,7 +45,7 @@ content: |
45
45
.. code-block:: sh
46
46
47
47
$kubectl exec -it <my-replica-set>-0 \
48
- /var/lib/mongodb-mms-automation/mongodb-linux-x86_64-4.0.4 /bin/mongo
48
+ /var/lib/mongodb-mms-automation/mongodb-linux-x86_64-4.4.0 /bin/mongo
49
49
50
50
b. Insert data into the ``test`` database.
51
51
@@ -56,9 +56,12 @@ content: |
56
56
57
57
switched to db test
58
58
59
- <my-replica-set>:PRIMARY> db.tmp.insert ({"foo":"bar"})
59
+ <my-replica-set>:PRIMARY> db.tmp.insertOne ({"foo":"bar"})
60
60
61
- WriteResult({ "nInserted" : 1 })
61
+ {
62
+ "acknowledged" : true,
63
+ "insertedId" : ObjectId("61128cb4a783c3c57ae5142d")
64
+ }
62
65
63
66
---
64
67
stepnum : 3
@@ -128,7 +131,7 @@ content: |
128
131
name: <my-replica-set>
129
132
spec:
130
133
members: 3
131
- version: "4.0.4 "
134
+ version: "4.4.0 "
132
135
project: my-project
133
136
credentials: my-credentials
134
137
type: ReplicaSet
@@ -174,7 +177,7 @@ content: |
174
177
.. code-block:: sh
175
178
176
179
$ kubectl exec -it <my-replica-set>-1 \
177
- /var/lib/mongodb-mms-automation/mongodb-linux-x86_64-4.0.4 /bin/mongo
180
+ /var/lib/mongodb-mms-automation/mongodb-linux-x86_64-4.4.0 /bin/mongo
178
181
179
182
.. code-block:: javascript
180
183
:copyable: false
You can’t perform that action at this time.
0 commit comments