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 @@ -97,6 +97,8 @@ Released 25 July 2024
9797 and :compass:`Compass </>` on Windows.
9898- Updates the :ref:`atlas-deployments-setup` command to always use the
9999 latest image when creating a new local deployment.
100+ - Drops support for MongoDB 6.0 for local deployments.
101+ - Drops support for local deployments created with earlier versions of the {+atlas-cli+}.
100102- Fixes a bug in the :ref:`atlas-deployments-setup` command where the
101103 {+atlas-cli+} deletes an existing local deployment when you run this
102104 command twice for the same deployment.
Original file line number Diff line number Diff line change @@ -201,6 +201,38 @@ Alert Config Not Deleted
201201This error might appear if the {+atlas-cli+} can't delete the alert
202202configuration specified by the ID.
203203
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+
204236Configuration Errors
205237--------------------
206238
You can’t perform that action at this time.
0 commit comments