Skip to content

Commit

Permalink
docs: clarify cluster-proxy installation for non-kind clusters
Browse files Browse the repository at this point in the history
Updates the cluster-proxy installation documentation to clarify that non-kind clusters
(e.g., OpenShift) require setting the proxyServer.entrypointAddress value. Adds an
example helm install command showing how to set this value.

Signed-off-by: xuezhaojun <[email protected]>
  • Loading branch information
xuezhaojun committed Nov 5, 2024
1 parent cf4c802 commit 3730eb5
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions content/en/docs/getting-started/integration/cluster-proxy.md
Original file line number Diff line number Diff line change
Expand Up @@ -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=<address of the proxy server>"
```

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
Expand Down

0 comments on commit 3730eb5

Please sign in to comment.