Skip to content

Commit fb25f9c

Browse files
Merge pull request #279901 from tomvcassidy/aciMSTopicFix
ms.topic fix and doc refresh
2 parents 78fc38a + 6b5aab7 commit fb25f9c

File tree

1 file changed

+14
-12
lines changed

1 file changed

+14
-12
lines changed

articles/container-instances/container-state.md

Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
---
22
title: Azure Container Instances states
33
description: Learn about the states of Azure Container Instances provisioning operations, containers, and container groups.
4-
ms.author: nickoman
5-
author: nickomang
6-
ms.topic: article
7-
ms.date: 03/25/2021
4+
ms.author: tomcassidy
5+
author: tomvcassidy
6+
ms.topic: how-to
7+
ms.service: container-instances
8+
services: container-instances
9+
ms.date: 07/02/2024
810
---
911

1012
# Azure Container Instances states
@@ -13,7 +15,7 @@ Azure Container Instances displays several independent state values. This articl
1315

1416
## Where to find state values
1517

16-
In the Azure portal, state is shown in various locations. All state values are accessible via the JSON definition of the resource. This value can be found under Essentials in the Overview blade, shown below.
18+
In the Azure portal, state is shown in various locations. All state values are accessible via the JSON definition of the resource. This value can be found under Essentials in the Overview blade, shown in the following image.
1719

1820
:::image type="content" source="./media/container-state/provisioning-state.png" alt-text="The Overview blade in the Azure portal is shown. The link 'JSON view' is highlighted.":::
1921

@@ -32,15 +34,15 @@ This value is the state of the deployed container group on the backend.
3234

3335
:::image type="content" source="./media/container-state/container-group-state.png" alt-text="The overview blade for the resource in the Azure portal is shown in a web browser. The text 'Status: Running' is highlighted.":::
3436

35-
- **Running**: The container group is running and will continue to try to run until a user action or a stop caused by the restart policy occurs.
37+
- **Running**: The container group is running and continues to run until a user action or a stop caused by the restart policy occurs.
3638

37-
- **Stopped**: The container group has been stopped and will not be scheduled to run without user action.
39+
- **Stopped**: The container group is stopped and won't run without user action.
3840

3941
- **Pending**: The container group is waiting to initialize (finish running init containers, mount Azure file volumes if applicable). The container continues to attempt to get to the **Running** state unless a user action (stop/delete) happens.
4042

41-
- **Succeeded**: The container group has run to completion successfully. Only applicable for *Never* and *On Failure* restart policies.
43+
- **Succeeded**: The container group ran to completion successfully. Only applicable for *Never* and *On Failure* restart policies.
4244

43-
- **Failed**: The container group failed to run to completion. Only applicable with a *Never* restart policy. This state indicates either an infrastructure failure (example: incorrect Azure file share credentials) or user application failure (example: application references an environment variable that does not exist).
45+
- **Failed**: The container group failed to run to completion. Only applicable with a *Never* restart policy. This state indicates either an infrastructure failure (example: incorrect Azure file share credentials) or user application failure (example: application references an environment variable that doesn't exist).
4446

4547
The following table shows what states are applicable to a container group based on the designated restart policy:
4648

@@ -54,7 +56,7 @@ The following table shows what states are applicable to a container group based
5456

5557
## Containers
5658

57-
There are two state values for containers- a current state and a previous state. In the Azure portal, shown below, only current state is displayed. All state values are applicable for any given container regardless of the container group's restart policy.
59+
There are two state values for containers- a current state and a previous state. In the Azure portal, shown in the following image, only current state is displayed. All state values are applicable for any given container regardless of the container group's restart policy.
5860

5961
> [!NOTE]
6062
> The JSON values of `currentState` and `previousState` contain additional information, such as an exit code or a reason, that is not shown elsewhere in the Azure portal.
@@ -65,7 +67,7 @@ There are two state values for containers- a current state and a previous state.
6567

6668
- **Waiting**: The container is waiting to run. This state indicates either init containers are still running, or the container is backing off due to a crash loop.
6769

68-
- **Terminated**: The container has terminated, accompanied with an exit code value.
70+
- **Terminated**: The container terminated, accompanied with an exit code value.
6971

7072
## Provisioning
7173

@@ -74,7 +76,7 @@ This value is the state of the last operation performed on a container group. Ge
7476
> [!IMPORTANT]
7577
> Additionally, users should not create dependencies on non-terminal provisioning states. Dependencies on **Succeeded** and **Failed** states are acceptable.
7678
77-
In addition to the JSON view, provisioning state can be also be found in the [response body of the HTTP call](/rest/api/container-instances/2022-09-01/container-groups/create-or-update#response).
79+
In addition to the JSON view, provisioning state can also be found in the [response body of the HTTP call](/rest/api/container-instances/2022-09-01/container-groups/create-or-update#response).
7880

7981
### Create, start, and restart operations
8082

0 commit comments

Comments
 (0)