You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: site/creating-domain.md
+5-3Lines changed: 5 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,12 +2,14 @@
2
2
3
3
The WebLogic domain must be installed into the folder that will be mounted as `/shared/domain`. The recommended approach is to use the provided `create-weblogic-domain.sh` script; however, instructions are also provided for manually installing and configuring a WebLogic domain (see [Manually creating a domain](manually-creating-domain.md)).
4
4
5
+
In this version of the operator, a WebLogic domain can be located either in a persistent volume (PV) or in a Docker image. To learn more about both approaches, see [Create and manage WebLogic domains](domains.md). For examples of each, see the [WebLogic operator samples](../kubernetes/samples/README.md).
6
+
5
7
## Important considerations and restrictions for WebLogic domains in Kubernetes
6
8
7
9
When running a WebLogic domain in Kubernetes, there are some additional considerations that must be taken into account to ensure correct functioning:
8
10
9
11
* Multicast is not currently well supported in Kubernetes. Some networking providers have some support for multicast, but it is generally considered of “beta” quality. Oracle recommends configuring WebLogic clusters to use unicast.
10
-
* The `ListenAddress` for all servers must be set to the correct DNS name; it should not be set to `0.0.0.0` or left blank. This is required for cluster discovery of servers to work correctly.
12
+
* The `ListenAddress` for all servers must be set to the correct DNS name or left blank. This is required for cluster discovery of servers to work correctly.
11
13
* If there is a desire to expose a T3 channel outside of the Kubernetes cluster -- for example, to allow WLST or RMI connections from clients outside Kubernetes -- then the recommended approach is to define a dedicated channel (per server) and to expose that channel using a `NodePort` service. It is required that the channel’s internal and external ports be set to the same value as the chosen `NodePort`; for example, they could all be `32000`. If all three are not the same, WebLogic Server will reject T3 connection requests.
Copy file name to clipboardExpand all lines: site/quickstart.md
+7-5Lines changed: 7 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,8 @@ refer to the [User guide](user-guide.md).
7
7
## Prerequisites
8
8
For this exercise, you’ll need a Kubernetes cluster. If you need help setting one up, check out our [cheat sheet](k8s_setup.md).
9
9
10
+
The operator uses Helm to create and deploy necessary resources and then run the operator in a Kubernetes cluster. For Helm installation and usage information, see [Using operator Helm charts](helm-charts.md).
11
+
10
12
You should clone this repository to your local machine so that you have access to the
11
13
various sample files mentioned throughout this guide:
12
14
```
@@ -180,27 +182,27 @@ d. Create an Ingress for the domain, in the domain namespace, by using the [samp
0 commit comments