|
1 | 1 | ---
|
2 | 2 | title: "Diagnose connection issues for Azure Arc-enabled Kubernetes clusters"
|
3 |
| -ms.date: 11/10/2022 |
| 3 | +ms.date: 11/22/2022 |
4 | 4 | ms.topic: how-to
|
5 | 5 | description: "Learn how to resolve common issues when connecting Kubernetes clusters to Azure Arc."
|
6 | 6 |
|
@@ -76,22 +76,18 @@ When you [create your support request](../../azure-portal/supportability/how-to-
|
76 | 76 |
|
77 | 77 | If you are using a proxy server on at least one machine, complete the first five steps of the non-proxy flowchart (through resource provider registration) for basic troubleshooting steps. Then, if you are still encountering issues, review the next flowchart for additional troubleshooting steps. More details about each step are provided below.
|
78 | 78 |
|
79 |
| -:::image type="content" source="media/diagnose-connection-issues/proxy-flowchart-2.png" alt-text="Flowchart showing a visual representation of checking for connection issues when using a proxy." lightbox="media/diagnose-connection-issues/proxy-flowchart-2.png"::: |
| 79 | +:::image type="content" source="media/diagnose-connection-issues/proxy-flowchart.png" alt-text="Flowchart showing a visual representation of checking for connection issues when using a proxy." lightbox="media/diagnose-connection-issues/proxy-flowchart.png"::: |
80 | 80 |
|
81 | 81 | ### Is the machine executing commands behind a proxy server?
|
82 | 82 |
|
83 |
| -If the machine is executing commands behind a proxy server, you'll need to set any necessary environment variables, [explained below](#set-environment-variables). |
84 |
| - |
85 |
| -### Set environment variables |
86 |
| - |
87 |
| -Be sure you have set all of the necessary environment variables. For more information, see [Connect using an outbound proxy server](quickstart-connect-cluster.md#connect-using-an-outbound-proxy-server). |
| 83 | +If the machine is executing commands behind a proxy server, you'll need to set all of the necessary environment variables. For more information, see [Connect using an outbound proxy server](quickstart-connect-cluster.md#connect-using-an-outbound-proxy-server). |
88 | 84 |
|
89 | 85 | For example:
|
90 | 86 |
|
91 | 87 | ```bash
|
92 |
| -export HTTP_PROXY=“http://<proxyIP>:<proxyPort>” |
93 |
| -export HTTPS_PROXY=“https://<proxyIP>:<proxyPort>” |
94 |
| -export NO_PROXY=“<service CIDR>,Kubernetes.default.svc,.svc.cluster.local,.svc” |
| 88 | +export HTTP_PROXY="http://<proxyIP>:<proxyPort>" |
| 89 | +export HTTPS_PROXY="https://<proxyIP>:<proxyPort>" |
| 90 | +export NO_PROXY="<cluster-apiserver-ip-address>:<proxyPort>" |
95 | 91 | ```
|
96 | 92 |
|
97 | 93 | ### Does the proxy server only accept trusted certificates?
|
|
0 commit comments