File tree Expand file tree Collapse file tree 2 files changed +34
-0
lines changed Expand file tree Collapse file tree 2 files changed +34
-0
lines changed Original file line number Diff line number Diff line change @@ -27,6 +27,8 @@ Released 25 July 2024
27
27
and :compass:`Compass </>` on Windows.
28
28
- Updates the :ref:`atlas-deployments-setup` command to always use the
29
29
latest image when creating a new local deployment.
30
+ - Drops support for MongoDB 6.0 for local deployments.
31
+ - Drops support for local deployments created with earlier versions of the {+atlas-cli+}.
30
32
- Fixes a bug in the :ref:`atlas-deployments-setup` command where the
31
33
{+atlas-cli+} deletes an existing local deployment when you run this
32
34
command twice for the same deployment.
Original file line number Diff line number Diff line change @@ -201,6 +201,38 @@ Alert Config Not Deleted
201
201
This error might appear if the {+atlas-cli+} can't delete the alert
202
202
configuration specified by the ID.
203
203
204
+ podman not found
205
+ ~~~~~~~~~~~~~~~~
206
+
207
+ This error appears if you try to run an ``atlas deployments`` command
208
+ inside our official docker container, ``mongodb/atlas`` in v1.26 or
209
+ later. Instead, follow the steps decribed in
210
+ :ref:`atlas-cli-deploy-docker`.
211
+
212
+ You should inspect past containers in your {+cluster+} with the
213
+ following command:
214
+
215
+ .. code-block::
216
+
217
+ podman ps -a
218
+
219
+ Then, remove any that start with ``mongod`` or ``mongot`` with the
220
+ following command:
221
+
222
+ .. code-block::
223
+
224
+ podman container rm -f -v <name or ID>
225
+
226
+ .. tip::
227
+
228
+ You can safely uninstall podman if you're on MacOS.
229
+
230
+ If you installed podman with homebrew, use this command to uninstall:
231
+
232
+ .. code-block::
233
+
234
+ brew uninstall podman
235
+
204
236
Configuration Errors
205
237
--------------------
206
238
You can’t perform that action at this time.
0 commit comments