Skip to content

Commit

Permalink
[CN-1124] Update AdvancedNetwork WAN section adding WithExposeExterna…
Browse files Browse the repository at this point in the history
…lly serviceType (#216)

Co-authored-by: rebekah-lawrence <142301480+rebekah-lawrence@users.noreply.github.com>
  • Loading branch information
semihbkgr and rebekah-lawrence authored Jul 16, 2024
1 parent 850d00f commit 2769329
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion docs/modules/ROOT/pages/advanced-networking.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,14 @@ The following example shows a configuration for setting up WAN sockets using the
include::ROOT:example$/advanced-networking-wan.yaml[]
----

Possible values for `serviceType` are: `ClusterIP` and `LoadBalancer`. After applying this example configuration, there will be 1 service created with a type of `LoadBalancer` which exposes 5 ports: `5710`, `5711`, `5712`, `5713`, `5714`. If you don't provide a `serviceType`, it will be set to `LoadBalancer` by default.
After applying this example configuration, a single service is created with a type of `LoadBalancer`, which exposes five ports: `5710`, `5711`, `5712`, `5713`, `5714`. If you don't provide a `serviceType`, it is set to `LoadBalancer` by default.

NOTE: In case WAN Replication configuration is not provided in `advancedNetwork` configuration, port number `5710` will be configured for WAN Replication by default.

Possible values for `serviceType` are: `ClusterIP`, `NodePort`, `LoadBalancer`, and `WithExposeExternally`. The values of `ClusterIP`, `NodePort`, and `LoadBalancer` create a new dedicated service for the WAN and expose the provided ports through this service. In contrast, `WithExposeExternally` exposes WAN ports on the existing member services, allowing WAN clients to use the service-per-pod topology.

WARNING: The `WithExposeExternally` serviceType requires Hazelcast version 5.5 or later.

You can use the following command to list the external addresses of the WAN endpoints of the cluster.

[source,shell]
Expand Down

0 comments on commit 2769329

Please sign in to comment.