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
+21-3Lines changed: 21 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,7 +19,7 @@ This article details some common error messages you may encounter while installi
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
21
21
```azure-cli-interactive
22
-
az k8s-extension list --cluster-type managedClusters --cluster-name myAKSCluster --resource-group myResourceGroup
22
+
az k8s-extension list --cluster-type managedClusters --cluster-name myCluster --resource-group myResourceGroup
23
23
```
24
24
25
25
The below JSON is returned, and the error message is captured in the `message` property.
@@ -36,8 +36,27 @@ The below JSON is returned, and the error message is captured in the `message` p
36
36
],
37
37
```
38
38
39
-
You can also try the following steps:
39
+
Another example:
40
40
41
+
```azurecli
42
+
az k8s-extension list --cluster-type managedClusters --cluster-name myCluster --resource-group myResourceGroup
43
+
```
44
+
45
+
```json
46
+
"statuses": [
47
+
{
48
+
"code": "InstallationFailed",
49
+
"displayStatus": null,
50
+
"level": null,
51
+
"message": "The extension operation failed with the following error: unable to add the configuration with configId {extension:microsoft-dapr} due to error: {error while adding the CRD configuration: error {failed to get the immutable configMap from the elevated namespace with err: configmaps 'extension-immutable-values' not found }}. (Code: ExtensionOperationFailed)",
52
+
"time": null
53
+
}
54
+
]
55
+
```
56
+
57
+
For these cases, possible remediation actions are to:
58
+
59
+
- Force delete and [reinstall the Dapr extension](./dapr.md).
41
60
-[Restart your AKS or Arc for Kubernetes cluster](./start-stop-cluster.md).
42
61
- Make sure you've [registered the `KubernetesConfiguration` service provider](./dapr.md#register-the-kubernetesconfiguration-service-provider).
43
62
- See if you're encountering an error [installing the `microsoft.flux` extension](../azure-arc/kubernetes/troubleshooting.md#flux-v2---error-installing-the-microsoftflux-extension).
@@ -54,7 +73,6 @@ Code: ExtensionOperationFailed
54
73
Message: The extension operation failed with the following error: Failed to resolve the extension version from the given values.
55
74
```
56
75
57
-
58
76
Try installing again, making sure to use a [supported version of Dapr](./dapr.md#dapr-versions).
59
77
60
78
## Error: Dapr version exists, but not in the mentioned region
0 commit comments