Skip to content

Commit f359bb0

Browse files
committed
Update documentation to address review comments
1 parent fd57edb commit f359bb0

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

kubernetes/samples/scripts/create-weblogic-domain/domain-home-in-image/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,8 +114,8 @@ The following parameters can be provided in the inputs file.
114114
| `includeServerOutInPodLog` | Boolean indicating whether to include `server.out` to the pod's stdout. | `true` |
115115
| `initialManagedServerReplicas` | Number of Managed Servers to initially start for the domain. | `2` |
116116
| `javaOptions` | Java options for starting the Administration and Managed Servers. A Java option can have references to one or more of the following pre-defined variables to obtain WebLogic domain information: `$(DOMAIN_NAME)`, `$(DOMAIN_HOME)`, `$(ADMIN_NAME)`, `$(ADMIN_PORT)`, and `$(SERVER_NAME)`. | `-Dweblogic.StdoutDebugEnabled=false` |
117-
| `logHomeOnPV` | Specifies whether the log home is stored on the persistent volume. If set to true, then the customer must specify the `logHome`, `persistentVolumeClaimName` and `domainPVMountPath` parameters.| `false` |
118-
| `logHome` | The in-pod name of the directory to store the domain, node manager, server logs, and server .out files in. If not specified, the value is derived from the `domainUID` as `/shared/logs/<domainUID>`. This parameter is required if `logHomeOnPV` is true. Otherwise, it is ignored. | `/shared/logs/domain1` |
117+
| `logHomeOnPV` | Specifies whether the log home is stored on the persistent volume. If set to true, then you must specify the `logHome`, `persistentVolumeClaimName` and `domainPVMountPath` parameters.| `false` |
118+
| `logHome` | The in-pod name of the directory in which to store the domain, Node Manager, server logs, and server .out files. If not specified, the value is derived from the `domainUID` as `/shared/logs/<domainUID>`. This parameter is required if `logHomeOnPV` is true. Otherwise, it is ignored. | `/shared/logs/domain1` |
119119
| `managedServerNameBase` | Base string used to generate Managed Server names. | `managed-server` |
120120
| `managedServerPort` | Port number for each Managed Server. | `8001` |
121121
| `namespace` | Kubernetes namespace in which to create the domain. | `default` |

kubernetes/samples/scripts/create-weblogic-domain/domain-home-in-image/create-domain-inputs.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,13 +69,13 @@ weblogicCredentialsSecretName: domain1-weblogic-credentials
6969
includeServerOutInPodLog: true
7070

7171
# Specifies whether the log home is stored on the persistent volume.
72-
# If set to true, then the customer must specify the 'logHome', 'persistentVolumeClaimName'
72+
# If set to true, then you must specify the 'logHome', 'persistentVolumeClaimName'
7373
# and 'domainPVMountPath' properties.
7474
# The default is false.
7575
logHomeOnPV: false
7676

77-
# The in-pod name of the directory to store the domain, node manager, server logs, and server .out
78-
# files in.
77+
# The in-pod name of the directory in which to store the domain, node manager, server logs,
78+
# and server .out files.
7979
# If not specified, the value is derived from the domainUID as /shared/logs/<domainUID>
8080
# This parameter is required if 'logHomeOnPV' is true.
8181
# Otherwise, it is ignored.

0 commit comments

Comments
 (0)