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: kubernetes/samples/scripts/create-weblogic-domain/domain-home-in-image/README.md
+2-3Lines changed: 2 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,8 +8,7 @@ Before you begin, read this guide, [Domain Resource](../../../../../site/domain-
8
8
9
9
The following prerequisites must be handled prior to running the create domain script:
10
10
* The WDT sample requires that `JAVA_HOME` is set to a Java JDK version 1.8 or later.
11
-
* Make sure that the WebLogic operator is running.
12
-
* The operator requires WebLogic Server 12.2.1.3.0 with patch 28076014 applied. Refer to [WebLogic Docker images](../../../../../site/weblogic-docker-images.md) for details on how to create one. If a different `domainHomeImageBase` (see Configuration table below) is specified, the specified image needs to be built locally or pulled from a repository.
11
+
* The operator requires WebLogic Server 12.2.1.3.0 with patch 28076014 applied. Refer to [WebLogic Docker images](../../../../../site/weblogic-docker-images.md) for details on how to create one.
13
12
* Create a Kubernetes namespace for the domain unless the intention is to use the default namespace.
14
13
* If logHomeOnPV is enabled, create the Kubernetes persistent volume where the log home will be hosted, and the Kubernetes persistent volume claim for the domain in the same Kubernates namespace. For samples to create a PV and PVC, see [Create sample PV and PVC](../../create-weblogic-domain-pv-pvc/README.md).
15
14
* Create a Kubernetes secret for the WebLogic administrator credentials that contains the fields `username` and `password`, and make sure that the secret name matches the value specified for `weblogicCredentialsSecretName` (see Configuration table below). For example:
@@ -104,7 +103,7 @@ The following parameters can be provided in the inputs file.
104
103
|`clusterName`| Name of the WebLogic cluster instance to generate for the domain. |`cluster-1`|
105
104
|`clusterType`| Type of the WebLogic Cluster. Legal values are `CONFIGURED` or `DYNAMIC`. |`DYNAMIC`|
106
105
|`configuredManagedServerCount`| Number of Managed Server instances to generate for the domain. |`5`|
107
-
|`domainHomeImageBase`| Base WebLogic binary image used to build the WebLogic domain image. The operator requires WebLogic Server 12.2.1.3.0 with patch 28076014 applied. Refer to [Weblogic Docker images](../../../../../site/weblogic-docker-images.md) for details on how to create one. If a different `domainHomeImageBase` is specified, the specified image needs to be built locally or pulled from a repository before the `create-domain.sh` script is executed. ||
106
+
|`domainHomeImageBase`| Base WebLogic binary image used to build the WebLogic domain image. The operator requires WebLogic Server 12.2.1.3.0 with patch 28076014 applied. Refer to [Weblogic Docker images](../../../../../site/weblogic-docker-images.md) for details on how to create one. ||
108
107
|`domainHomeImageBuildPath`| Location of the WebLogic "domain home in image" Docker image in `https://github.com/oracle/docker-images.git` project. If not specified, use `./docker-images/OracleWebLogic/samples/12213-domain-home-in-image-wdt`. Another possible value is `./docker-images/OracleWebLogic/samples/12213-domain-home-in-image` which uses WLST scripts, instead of WDT, to generate the domain configuration. |`./docker-images/OracleWebLogic/samples/12213-domain-home-in-image-wdt`|
109
108
|`domainPVMountPath`| Mount path of the domain persistent volume. |`/shared`|
110
109
|`domainUID`| Unique ID that will be used to identify this particular domain. Used as the name of the generated WebLogic domain as well as the name of the Kubernetes domain resource. This ID must be unique across all domains in a Kubernetes cluster. This ID cannot contain any character that is not valid in a Kubernetes service name. |`domain1`|
Copy file name to clipboardExpand all lines: site/domains.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -67,15 +67,15 @@ running in Kubernetes.
67
67
configuration overrides. This occurs if the domain resource `logHomeEnabled` field is explicitly set to `true`, or if `logHomeEnabled` isn't set
68
68
and `domainHomeInImage` is explicitly set to `false`. When overriding, the log location will be the location specified by the `logHome` setting.
69
69
*_Listen Address Configuration:_ Channel listen addresses in a configuration either must be left completely unset (for example, not set to anything), or must be set to the exact required value, which will be in the form of the `domainUID`
70
-
followed by a hyphen and then the server name (with all lower case, underscores converted to dashes). For example `domain1-admin-server`. This includes default, SSL, admin, and custom channels.
70
+
followed by a hyphen and then the server name (with all lower case, underscores converted to hyphens). For example `domain1-admin-server`. This includes default, SSL, admin, and custom channels.
71
71
*_Listen Address Overrides:_ The operator will automatically override all WebLogic domain default,
72
72
SSL, admin, or custom channel listen addresses (using situational configuration overrides). These will become `domainUID` followed by a
73
-
hyphen and then the server name, all lower case, and underscores converted to dashes. For example, if `domainUID=domain1` and
73
+
hyphen and then the server name, all lower case, and underscores converted to hyphens. For example, if `domainUID=domain1` and
74
74
the WebLogic server name is `Admin_Server`, then its listen address becomes `domain1-admin-server`.
75
75
*_Domain, Cluster, Server, and Network-Access-Point Names:_ WebLogic domain, cluster, server, and network-access-point (channel)
76
76
names must contain only the characters `A-Z`, `a-z`, `0-9`, `-`, or `_`. This ensures that they can be converted to
77
77
meet Kubernetes resource and DNS1123 naming requirements. (When generating pod and service names, the operator will convert
78
-
configured names to lower case and substitute a dash (`-`) for each underscore (`_`).)
78
+
configured names to lower case and substitute a hyphen (`-`) for each underscore (`_`).)
79
79
*_Node Ports:_ If you choose to expose any WebLogic channels outside the Kubernetes cluster via a `NodePort`, for example, the
80
80
administration port or a T3 channel to allow WLST access, you need to ensure that you allocate each channel a
81
81
unique port number across the entire Kubernetes cluster. If you expose the administration port in each WebLogic domain in
0 commit comments