Skip to content

Commit 6f3717d

Browse files
committed
Initial change for owls-70853
Signed-off-by: doxiao <[email protected]>
1 parent 8d6bdc1 commit 6f3717d

File tree

7 files changed

+0
-54
lines changed

7 files changed

+0
-54
lines changed

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,6 @@ The following parameters can be provided in the inputs file.
9191
| `adminNodePort` | Port number of the Administration Server outside the Kubernetes cluster. | `30701` |
9292
| `adminServerName` | Name of the Administration Server. | `admin-server` |
9393
| `clusterName` | Name of the WebLogic cluster instance to generate for the domain. | `cluster-1` |
94-
| `clusterType` | Type of the WebLogic Cluster. Legal values are `CONFIGURED` or `DYNAMIC`. | `DYNAMIC` |
9594
| `configuredManagedServerCount` | Number of Managed Server instances to generate for the domain. | `5` |
9695
| `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` (see Configuration table below) is specified, the specified image needs to be built locally or pulled from a repository before the `create-domain.sh` script is executed. | |
9796
| `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` |

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

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,6 @@ adminServerName: admin-server
1515
# in a Kubernetes cluster.
1616
domainUID: domain1
1717

18-
# Type of WebLogic Cluster
19-
# Legal values are "CONFIGURED" or "DYNAMIC"
20-
clusterType: DYNAMIC
21-
2218
# Determines which WebLogic Servers the Operator will start up
2319
# Legal values are "NEVER", "IF_NEEDED", or "ADMIN_ONLY"
2420
serverStartPolicy: IF_NEEDED

kubernetes/samples/scripts/create-weblogic-domain/domain-home-in-image/properties-template.properties

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ DB_PORT=1527
1111
DEBUG_FLAG=true
1212
DERBY_FLAG=true
1313
PRODUCTION_MODE_ENABLED=%PRODUCTION_MODE_ENABLED%
14-
CLUSTER_TYPE=%CLUSTER_TYPE%
1514
JAVA_OPTIONS=%JAVA_OPTIONS%
1615
T3_CHANNEL_PORT=%T3_CHANNEL_PORT%
1716
T3_PUBLIC_ADDRESS=%T3_PUBLIC_ADDRESS%

kubernetes/samples/scripts/create-weblogic-domain/domain-home-on-pv/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,6 @@ The following parameters can be provided in the inputs file.
7373
| `adminNodePort` | Port number of the Administration Server outside the Kubernetes cluster. | `30701` |
7474
| `adminServerName` | Name of the Administration Server. | `admin-server` |
7575
| `clusterName` | Name of the WebLogic cluster instance to generate for the domain. | `cluster-1` |
76-
| `clusterType` | Type of the WebLogic Cluster. Legal values are `CONFIGURED` or `DYNAMIC`. | `DYNAMIC` |
7776
| `configuredManagedServerCount` | Number of Managed Server instances to generate for the domain. | `5` |
7877
| `createDomainFilesDir` | Directory to get all the create domain scripts and supporting files, including the script that is specified by the `createDomainScriptName` property. By default, this directory is set to the relative path `wlst`, and the create script will use the built-in WLST offline scripts in the `wlst` directory to create the WebLogic domain. It can also be set to the relative path `wdt`, and then the built-in WDT scripts will be used instead. An absolute path is also supported to point to an arbitrary directory in the file system. | `wlst` |
7978
| `createDomainScriptsMountPath` | Mount path of the directory where the create domain scripts are located inside the pod. | `/u01/weblogic` |

kubernetes/samples/scripts/create-weblogic-domain/domain-home-on-pv/create-domain-inputs.yaml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,6 @@ domainUID: domain1
1818
# If not specified, the value is derived from the domainUID as /shared/domains/<domainUID>
1919
domainHome: /shared/domains/domain1
2020

21-
# Type of WebLogic Cluster
22-
# Legal values are "CONFIGURED" or "DYNAMIC"
23-
clusterType: DYNAMIC
24-
2521
# Determines which WebLogic Servers the Operator will start up
2622
# Legal values are "NEVER", "IF_NEEDED", or "ADMIN_ONLY"
2723
serverStartPolicy: IF_NEEDED

kubernetes/samples/scripts/create-weblogic-domain/domain-home-on-pv/create-domain.sh

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -152,10 +152,6 @@ function createDomainConfigmap {
152152
# domain in the job.
153153
echo domainName: $domainName >> ${externalFilesTmpDir}/create-domain-inputs.yaml
154154

155-
if [ -f ${externalFilesTmpDir}/prepare.sh ]; then
156-
sh ${externalFilesTmpDir}/prepare.sh -t ${clusterType} -i ${externalFilesTmpDir}
157-
fi
158-
159155
# create the configmap and label it properly
160156
local cmName=${domainUID}-create-weblogic-sample-domain-job-cm
161157
kubectl create configmap ${cmName} -n $namespace --from-file $externalFilesTmpDir

kubernetes/samples/scripts/create-weblogic-domain/domain-home-on-pv/wdt/prepare.sh

Lines changed: 0 additions & 39 deletions
This file was deleted.

0 commit comments

Comments
 (0)