Skip to content

Commit 715055c

Browse files
authored
Merge pull request #112866 from kpeechara/kapil-branch-2
Updates regarding Arc enabled clusters as per the PG feedback.
2 parents 7829256 + d3c4cf8 commit 715055c

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

articles/azure-monitor/containers/container-insights-enable-arc-enabled-clusters.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,10 @@ This option uses the following defaults:
108108
- Creates or uses existing default log analytics workspace corresponding to the region of the cluster
109109
- Auto-upgrade is enabled for the Azure Monitor cluster extension
110110
111+
>[!NOTE]
112+
>Managed identity authentication will be default in k8s-extension version 1.43.0 or higher.
113+
>
114+
111115
```azurecli
112116
az k8s-extension create --name azuremonitor-containers --cluster-name <cluster-name> --resource-group <resource-group> --cluster-type connectedClusters --extension-type Microsoft.AzureMonitor.Containers
113117
```
@@ -118,6 +122,25 @@ To use [managed identity authentication](container-insights-onboard.md#authentic
118122
az k8s-extension create --name azuremonitor-containers --cluster-name <cluster-name> --resource-group <resource-group> --cluster-type connectedClusters --extension-type Microsoft.AzureMonitor.Containers --configuration-settings amalogs.useAADAuth=true
119123
```
120124

125+
>[!NOTE]
126+
>Managed identity authentication is not supported for Arc k8s connected clusters with **ARO**.
127+
>
128+
129+
To use legacy/non-managed identity authentication to create extension instance on **Arc K8S connected clusters with ARO**, you can use the commands below that does not use managed identity. Non-cli onboarding is not supported for Arc K8s connected clusters with **ARO**. Currently, only k8s-extension version 1.3.7 or below is supported.
130+
131+
If you are using k8s-extension version above 1.3.7, downgrade the version.
132+
133+
```azurecli
134+
Install the extension with **amalogs.useAADAuth=false**.
135+
az extension add --name k8s-extension --version 1.3.7
136+
```
137+
138+
Install the extension with **amalogs.useAADAuth=false**.
139+
140+
```azurecli
141+
az k8s-extension create --name azuremonitor-containers --cluster-name <cluster-name> --resource-group <resource-group> --cluster-type connectedClusters --extension-type Microsoft.AzureMonitor.Containers --configuration-settings amalogs.useAADAuth=false
142+
```
143+
121144

122145
### Option 2 - With existing Azure Log Analytics workspace
123146

@@ -228,6 +251,10 @@ az k8s-extension show --name azuremonitor-containers --cluster-name <cluster-nam
228251
## Migrate to managed identity authentication
229252
Use the flowing guidance to migrate an existing extension instance to managed identity authentication.
230253

254+
>[!NOTE]
255+
>Managed identity authentication is not supported for Arc k8s connected clusters with **ARO**.
256+
>
257+
231258
## [CLI](#tab/migrate-cli)
232259
First retrieve the Log Analytics workspace configured for Container insights extension.
233260

0 commit comments

Comments
 (0)