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 e3f67eb
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 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,23 @@ 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 configure the `ManagedProxyConfiguration` by setting `proxyServer.entrypointAddress`
in the `values.yaml` to the address of the proxy server.

To do this at install time, you can run the following command:
```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 e3f67eb

Please sign in to comment.