Skip to content

Commit 6a7f262

Browse files
committed
updates per shubham
1 parent bac92e9 commit 6a7f262

File tree

1 file changed

+24
-8
lines changed

1 file changed

+24
-8
lines changed

articles/aks/dapr-ext-troubleshooting.md

Lines changed: 24 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ ms.author: hannahhunter
66
ms.reviewer: nigreenf
77
ms.service: container-service
88
ms.topic: article
9-
ms.date: 09/08/2022
9+
ms.date: 09/15/2022
1010
ms.custom: devx-track-azurecli
1111
---
1212

1313
# Troubleshoot Dapr extension installation errors
1414

1515
When installing the Dapr extension for Azure Kubernetes Service (AKS) or Arc for Kubernetes, you might occasionally come across problems. This article details some common problems and troubleshooting steps.
1616

17-
## Error installing the Dapr extension
17+
## Installation failure without an error message
1818

1919
If the extension fails to create or update without an error message, you can inspect where the creation of the extension failed by running the `az k8s-extension list` command. For example, if a wrong key is used in the configuration-settings, such as `global.ha=false` instead of `global.ha.enabled=false`:
2020

@@ -36,22 +36,38 @@ The below JSON is returned, and the error message is captured in the `message` p
3636
],
3737
```
3838

39-
If you run into a general error with no specific message during Dapr extension install, you can also try the following steps:
39+
You can also try the following steps:
4040

4141
- [Restart your AKS or Arc for Kubernetes cluster](./start-stop-cluster.md).
4242
- Make sure you've [registered the `KubernetesConfiguration` service provider](./dapr.md#register-the-kubernetesconfiguration-service-provider).
43+
- See if you're encountering an error [installing the `microsoft.flux` extension](../azure-arc/kubernetes/troubleshooting.md#flux-v2---error-installing-the-microsoftflux-extension).
4344

4445
See below for examples of error messages you may encounter during Dapr extension install or update.
4546

46-
### Error: Dapr version doesn't exist
47+
## Error: Dapr version doesn't exist
4748

48-
You're installing the Dapr extension and [targeting a specific version](./dapr.md#targeting-a-specific-dapr-version), but run into an error message saying the Dapr version doesn't exist. Try installing again, making sure to use a [supported version of Dapr](./dapr.md#dapr-versions).
49+
You're installing the Dapr extension and [targeting a specific version](./dapr.md#targeting-a-specific-dapr-version), but run into an error message saying the Dapr version doesn't exist.
4950

50-
### Error: Dapr version exists, but not in the mentioned region
51+
```
52+
(ExtensionOperationFailed) The extension operation failed with the following error: Failed to resolve the extension version from the given values.
53+
Code: ExtensionOperationFailed
54+
Message: The extension operation failed with the following error: Failed to resolve the extension version from the given values.
55+
```
56+
57+
58+
Try installing again, making sure to use a [supported version of Dapr](./dapr.md#dapr-versions).
5159

52-
Some versions of Dapr aren't available in all regions. If you receive this error message, try installing in an [available region](./dapr.md#cloudsregions) where your Dapr version is supported.
60+
## Error: Dapr version exists, but not in the mentioned region
61+
62+
Some versions of Dapr aren't available in all regions. If you receive an error message like the following, try installing in an [available region](./dapr.md#cloudsregions) where your Dapr version is supported.
63+
64+
```
65+
(ExtensionTypeRegistrationGetFailed) Extension type microsoft.dapr is not registered in region <regionname>.
66+
Code: ExtensionTypeRegistrationGetFailed
67+
Message: Extension type microsoft.dapr is not registered in region <regionname>
68+
```
5369

54-
### Error: dapr-system already exists
70+
## Error: `dapr-system` already exists
5571

5672
You're installing the Dapr extension for AKS or Arc for Kubernetes, but receive an error message indicating that Dapr already exists. This error message may look like:
5773

0 commit comments

Comments
 (0)