You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/container-apps/troubleshooting.md
+34Lines changed: 34 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -27,6 +27,8 @@ The following table lists issues you might encounter while using Azure Container
27
27
| Requests to endpoints fail | The container app endpoint doesn't respond to requests. |[Review ingress configuration](#review-ingress-configuration)|
28
28
| Requests return status 403 | The container app endpoint responds to requests with HTTP error 403 (access denied). |[Verify networking configuration is correct](#verify-networking-configuration)|
29
29
| Responses not as expected | The container app endpoint responds to requests, but the responses aren't as expected. |[Verify traffic is routed to the correct revision](#verify-traffic-is-routed-to-the-correct-revision)<br><br>[Verify you're using unique tags when deploying images to the container registry](/azure/container-registry/container-registry-image-tag-version)|
30
+
| Missing parameters error when running Azure CLI/Azure PowerShell commands |[Verify latest version of Azure Container Apps extension is installed](#verify-latest-version-of-azure-container-apps-extension-is-installed)|
31
+
| Preview features not available when running `az containerapp` commands |[Verify Azure Container Apps extension allows preview features](#verify-azure-container-apps-extension-allows-preview-features)|
30
32
31
33
## View logs
32
34
@@ -178,6 +180,38 @@ If **Revision Mode** is set to `Multiple`, verify you're not routing traffic to
178
180
179
181
For more information about configuring traffic splitting, see [Traffic splitting in Azure Container Apps](./traffic-splitting.md).
180
182
183
+
## Verify latest version of Azure Container Apps extension is installed
184
+
185
+
If, when you run `az containerapp` commands in Azure CLI, or `Az.App` commands in Azure PowerShell, you receive errors about missing parameters, be sure you have the latest version of the Azure Container Apps extension installed.
186
+
187
+
# [Bash](#tab/bash)
188
+
189
+
```azurecli
190
+
az extension add --name containerapp --upgrade
191
+
```
192
+
193
+
# [Azure PowerShell](#tab/azure-powershell)
194
+
195
+
```azurepowershell
196
+
Install-Module -Name Az.App
197
+
```
198
+
199
+
If you have an older version of the Az.App module installed, update it.
200
+
201
+
```azurepowershell
202
+
Update-Module -Name Az.App
203
+
```
204
+
205
+
---
206
+
207
+
## Verify Azure Container Apps extension allows preview features
208
+
209
+
If, when you run `az containerapp` commands in the Azure CLI, [preview features](./whats-new.md) are not available, be sure you have enabled preview features on the Azure Container Apps extension.
210
+
211
+
```azurecli
212
+
az extension add --name containerapp --upgrade --allow-preview true
Copy file name to clipboardExpand all lines: includes/container-apps-create-cli-steps.md
+8Lines changed: 8 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -44,12 +44,20 @@ Ignore any warnings about modules currently in use.
44
44
45
45
Next, install or update the Azure Container Apps extension for the CLI.
46
46
47
+
If, when you run `az containerapp` commands in Azure CLI, or `Az.App` commands in Azure PowerShell, you receive errors about missing parameters, be sure you have the latest version of the Azure Container Apps extension installed.
48
+
47
49
# [Bash](#tab/bash)
48
50
49
51
```azurecli
50
52
az extension add --name containerapp --upgrade
51
53
```
52
54
55
+
> [!NOTE]
56
+
> Starting in May 2024, Azure CLI extensions no longer enable preview features by default. To access Container Apps [preview features](./whats-new.md) are not available, install the Container Apps extension with `--allow-preview true`.
57
+
> ```azurecli
58
+
> az extension add --name containerapp --upgrade --allow-preview true
0 commit comments