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
If you need the outbound communication from Arc agents to authenticate via a certificate, pass the certificate during onboarding. In case you need to pass multiple certificates, combine them into a single certificate chain and pass it through.
261
-
262
-
### [Azure CLI](#tab/azure-cli)
263
-
264
-
Run the connect command with parameters specified:
265
-
266
-
```azurecli
267
-
az connectedk8s connect --name <cluster-name> --resource-group <resource-group> --proxy-cert <path-to-cert-file>
268
-
```
269
-
270
-
### [Azure PowerShell](#tab/azure-powershell)
271
-
272
-
This scenario is not supported via the powershell cmdlet.
273
-
274
-
---
275
-
276
258
## Connect using an outbound proxy server
277
259
278
260
If your cluster is behind an outbound proxy server, requests must be routed via the outbound proxy server.
@@ -317,6 +299,22 @@ If your cluster is behind an outbound proxy server, requests must be routed via
317
299
318
300
---
319
301
302
+
For outbound proxy servers where only a trusted certificate needs to be provided without the proxy server endpoint inputs, `az connectedk8s connect` can be run with just the `--proxy-cert` input specified. In case multiple trusted certificates are expected, the combined certificate chain can be provided in a single file using the `--proxy-cert` parameter.
303
+
304
+
### [Azure CLI](#tab/azure-cli)
305
+
306
+
Run the connect command with the `--proxy-cert` parameter specified:
307
+
308
+
```azurecli
309
+
az connectedk8s connect --name <cluster-name> --resource-group <resource-group> --proxy-cert <path-to-cert-file>
310
+
```
311
+
312
+
### [Azure PowerShell](#tab/azure-powershell)
313
+
314
+
The ability to pass in the proxy certificate only without the proxy server endpoint details is not yet supported via PowerShell.
0 commit comments