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/aks/dapr-ext-troubleshooting.md
+24-8Lines changed: 24 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,15 +6,15 @@ ms.author: hannahhunter
6
6
ms.reviewer: nigreenf
7
7
ms.service: container-service
8
8
ms.topic: article
9
-
ms.date: 09/08/2022
9
+
ms.date: 09/15/2022
10
10
ms.custom: devx-track-azurecli
11
11
---
12
12
13
13
# Troubleshoot Dapr extension installation errors
14
14
15
15
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.
16
16
17
-
## Error installing the Dapr extension
17
+
## Installation failure without an error message
18
18
19
19
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`:
20
20
@@ -36,22 +36,38 @@ The below JSON is returned, and the error message is captured in the `message` p
36
36
],
37
37
```
38
38
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:
40
40
41
41
-[Restart your AKS or Arc for Kubernetes cluster](./start-stop-cluster.md).
42
42
- 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).
43
44
44
45
See below for examples of error messages you may encounter during Dapr extension install or update.
45
46
46
-
###Error: Dapr version doesn't exist
47
+
## Error: Dapr version doesn't exist
47
48
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.
49
50
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).
51
59
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
+
```
53
69
54
-
###Error: dapr-system already exists
70
+
## Error: `dapr-system` already exists
55
71
56
72
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:
0 commit comments