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
> Managed identity authentication is not supported for Arc-enabled Kubernetes clusters with **ARO**.
89
+
> Managed identity authentication is not supported for Arc-enabled Kubernetes clusters with ARO (Azure Red Hat Openshift) or Windows nodes.
90
90
>
91
91
92
-
To use legacy/non-managed identity authentication to create an extension instance on **Arc K8S connected clusters with ARO**, use the commands below that don't use managed identity. Non-cli onboarding is not supported for Arc-enabled Kubernetes clusters with **ARO**. Currently, only k8s-extension version 1.3.7 or below is supported.
93
-
94
-
If you are using k8s-extension version above 1.3.7, downgrade the version.
95
-
96
-
```azurecli
97
-
Install the extension with **amalogs.useAADAuth=false**.
98
-
az extension add --name k8s-extension --version 1.3.7
99
-
```
92
+
To use legacy/non-managed identity authentication to create an extension instance on **Arc K8S connected clusters with ARO**, use the commands below that don't use managed identity. Non-cli onboarding is not supported for Arc-enabled Kubernetes clusters with **ARO**.
100
93
101
94
Install the extension with **amalogs.useAADAuth=false**.
az deployment group create --resource-group <resource-group> --template-file ./arc-k8s-azmon-extension-arm-template.json --parameters @./arc-k8s-azmon-extension-arm-template-params.json
194
189
```
195
190
191
+
## [ARM (with MSI)](#tab/create-arm-msi)
192
+
193
+
Onboard using an ARM template with MSI based authentication enabled
194
+
195
+
1. Download Azure Resource Manager template and parameter:
2. Update parameter values in arc-k8s-azmon-extension-arm-template-params.json file. For Azure public cloud, `opinsights.azure.com` needs to be used as the value of workspaceDomain and for AzureUSGovernment, `opinsights.azure.us` needs to be used as the value of workspaceDomain.
203
+
204
+
3. Deploy the template to create Azure Monitor Container Insights extension
205
+
206
+
```azurecli
207
+
az login
208
+
az account set --subscription "Subscription Name"
209
+
az deployment group create --resource-group <resource-group> --template-file ./arc-k8s-azmon-extension-arm-template.json --parameters @./arc-k8s-azmon-extension-arm-template-params.json
0 commit comments