diff --git a/content/en/docs/getting-started/integration/cluster-proxy.md b/content/en/docs/getting-started/integration/cluster-proxy.md index b18af7c3..cc782aaa 100644 --- a/content/en/docs/getting-started/integration/cluster-proxy.md +++ b/content/en/docs/getting-started/integration/cluster-proxy.md @@ -110,6 +110,18 @@ Then run the following helm command to install the cluster-proxy addon: ```shell $ helm install -n open-cluster-management-addon --create-namespace \ cluster-proxy ocm/cluster-proxy +``` + +**Note:**, if you're using a non-kind cluster, for example, an openshift cluster, you need to set the value of `proxyServer.entrypointAddress` in the managedproxyconfiguration to the address of the proxy server. +```shell +$ helm install -n open-cluster-management-addon --create-namespace \ + cluster-proxy ocm/cluster-proxy \ + --set "proxyServer.entrypointAddress=
" +``` + +After the installation, you can check the deployment status of the cluster-proxy addon by running the following command: + +```shell $ kubectl -n open-cluster-management-addon get deploy NAME READY UP-TO-DATE AVAILABLE AGE cluster-proxy 3/3 3 3 24h