|
1 |
| -# Copyright 2018, Oracle Corporation and/or its affiliates. All rights reserved. |
| 1 | +# Copyright 2018,2019, Oracle Corporation and/or its affiliates. All rights reserved. |
2 | 2 | # Licensed under the Universal Permissive License v 1.0 as shown at http://oss.oracle.com/licenses/upl.
|
3 | 3 |
|
4 | 4 | # The version of this inputs file. Do not modify.
|
@@ -97,14 +97,37 @@ persistentVolumeClaimName: domain1-weblogic-sample-pvc
|
97 | 97 | # Mount path of the domain persistent volume.
|
98 | 98 | domainPVMountPath: /shared
|
99 | 99 |
|
100 |
| -# Mount path of the directory where the create domain scripts are located inside the pod |
| 100 | +# Mount path where the create domain scripts are located inside a pod |
| 101 | +# |
| 102 | +# The `create-domain.sh` script creates a Kubernetes job to run the script (specified in the |
| 103 | +# `createDomainScriptName` property) in a Kubernetes pod to create a WebLogic home. Files |
| 104 | +# in the `createDomainFilesDir` directory are mounted to this location in the pod, so that |
| 105 | +# a Kubernetes pod can use the scripts and supporting files to creates a domain home. |
101 | 106 | createDomainScriptsMountPath: /u01/weblogic
|
102 | 107 |
|
103 |
| -# Script that creates the domain. |
| 108 | +# Script that the create domain script uses to create a WebLogic domain |
| 109 | +# |
| 110 | +# The `create-domain.sh` script creates a Kubernetes job to run this script to create a |
| 111 | +# domain home. The script is located in the in-pod directory that is specified in the |
| 112 | +# `createDomainScriptsMountPath` property. |
| 113 | +# |
| 114 | +# If you need to provide your own scripts, instead of using the built-it scripts, to create |
| 115 | +# the domain home, you need to set here the name of the script that you want the create |
| 116 | +# domain job to run. |
104 | 117 | createDomainScriptName: create-domain-job.sh
|
105 | 118 |
|
106 |
| -# Directory to get all the create domain scripts and supporting files, including |
107 |
| -# the script that is specified by the createDomainScriptName property. |
108 |
| -# The default is the "wlst" subdirectory under the directory where the |
109 |
| -# create-domain.sh script is located. |
| 119 | +# Directory on the host machine to locate all the files to create a WebLogic domain |
| 120 | +# It contains the script that is specified in the `createDomainScriptName` property. |
| 121 | +# |
| 122 | +# By default, this directory is set to the relative path `wlst`, and the create script will |
| 123 | +# use the built-in WLST offline scripts in the `wlst` directory to create the WebLogic domain. |
| 124 | +# It can also be set to the relative path `wdt`, and then the built-in WDT scripts will be |
| 125 | +# used instead. |
| 126 | +# |
| 127 | +# An absolute path is also supported to point to an arbitrary directory in the file system. |
| 128 | +# |
| 129 | +# The built-in scripts can be replaced by the user-provided scripts or model files as long |
| 130 | +# as those files are in the specified directory. Files in this directory are put into a |
| 131 | +# Kubernetes config map, which in turn is mounted to the `createDomainScriptsMountPath`, |
| 132 | +# so that the Kubernetes pod can use the scripts and supporting files to creates a domain home. |
110 | 133 | createDomainFilesDir: wlst
|
0 commit comments