Skip to content

Commit 36e7ee7

Browse files
update patched image info
1 parent 22e7a54 commit 36e7ee7

File tree

4 files changed

+23
-23
lines changed

4 files changed

+23
-23
lines changed

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

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ adminPort: 7001
1111
adminServerName: admin-server
1212

1313
# Unique ID identifying a domain.
14-
# This ID must not contain an underscope ("_"), and must be lowercase and unique across all domains
14+
# This ID must not contain an underscope ("_"), and must be lowercase and unique across all domains
1515
# in a Kubernetes cluster.
1616
domainUID: domain1
1717

@@ -52,7 +52,7 @@ productionModeEnabled: true
5252
# to be used in a registry local to that Kubernetes cluster. You also need to push the `image` to
5353
# that registry before starting the domain using the `kubectl create -f` or `kubectl apply -f` command.
5454
# See README.md for more help.
55-
#image:
55+
#image:
5656

5757
# Image pull policy
5858
# Legal values are "IfNotPresent", "Always", or "Never"
@@ -63,7 +63,7 @@ imagePullPolicy: IfNotPresent
6363
#imagePullSecretName:
6464

6565
# Name of the Kubernetes secret for the Admin Server's username and password
66-
# The name must be lowercase.
66+
# The name must be lowercase.
6767
# If not specified, the value is derived from the domainUID as <domainUID>-weblogic-credentials
6868
weblogicCredentialsSecretName: domain1-weblogic-credentials
6969

@@ -107,25 +107,26 @@ namespace: default
107107
# Java Option for WebLogic Server
108108
javaOptions: -Dweblogic.StdoutDebugEnabled=false
109109

110-
# Name of the persistent volume claim
110+
# Name of the persistent volume claim
111111
# If not specified, the value is derived from the domainUID as <domainUID>-weblogic-sample-pvc
112112
# This parameter is required if 'logHomeOnPV' is true.
113113
# Otherwise, it is ignored.
114114
persistentVolumeClaimName: domain1-weblogic-sample-pvc
115115

116-
# Mount path of the domain persistent volume.
116+
# Mount path of the domain persistent volume.
117117
# This parameter is required if 'logHomeOnPV' is true.
118118
# Otherwise, it is ignored.
119119
domainPVMountPath: /shared
120120

121121
# Base WebLogic binary image used to build the WebLogic domain image
122122
# The operator requires WebLogic Server 12.2.1.3.0 with patch 29135930 applied.
123+
# The WebLogic Docker image, `store/oracle/weblogic:12.2.1.3`, meets this requirement.
123124
# Refer to [WebLogic Docker images](../../../../../site/weblogic-docker-images.md) for details on how
124-
# to create a custom Docker image with the required patch.
125+
# to obtain or create the image.
125126
# See README.md for more help.
126-
#domainHomeImageBase:
127+
#domainHomeImageBase:
127128

128-
# Location of the WebLogic "domain home in image" Docker image sample in the
129+
# Location of the WebLogic "domain home in image" Docker image sample in the
129130
# `https://github.com/oracle/docker-images.git` project.
130131
# If not specified, use "./docker-images/OracleWebLogic/samples/12213-domain-home-in-image".
131132
# Another possible value is "./docker-images/OracleWebLogic/samples/12213-domain-home-in-image-wdt",

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

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,9 @@ managedServerPort: 8001
3939

4040
# WebLogic Server Docker image.
4141
# The operator requires WebLogic Server 12.2.1.3.0 with patch 29135930 applied.
42+
# The WebLogic Docker image, `store/oracle/weblogic:12.2.1.3`, meets this requirement.
4243
# Refer to [WebLogic Docker images](../../../../../site/weblogic-docker-images.md) for details on how
43-
# to create a custom Docker image with the required patch.
44+
# to obtain or create the image.
4445
#image:
4546

4647
# Image pull policy
@@ -55,11 +56,11 @@ imagePullPolicy: IfNotPresent
5556
productionModeEnabled: true
5657

5758
# Name of the Kubernetes secret for the Admin Server's username and password
58-
# The name must be lowercase.
59+
# The name must be lowercase.
5960
# If not specified, the value is derived from the domainUID as <domainUID>-weblogic-credentials
6061
weblogicCredentialsSecretName: domain1-weblogic-credentials
6162

62-
# Whether to include server .out to the pod's stdout.
63+
# Whether to include server .out to the pod's stdout.
6364
# The default is true.
6465
includeServerOutInPodLog: true
6566

@@ -91,11 +92,11 @@ namespace: default
9192
#Java Option for WebLogic Server
9293
javaOptions: -Dweblogic.StdoutDebugEnabled=false
9394

94-
# Name of the persistent volume claim
95+
# Name of the persistent volume claim
9596
# If not specified, the value is derived from the domainUID as <domainUID>-weblogic-sample-pvc
96-
persistentVolumeClaimName: domain1-weblogic-sample-pvc
97+
persistentVolumeClaimName: domain1-weblogic-sample-pvc
9798

98-
# Mount path of the domain persistent volume.
99+
# Mount path of the domain persistent volume.
99100
domainPVMountPath: /shared
100101

101102
# Mount path where the create domain scripts are located inside a pod
@@ -112,7 +113,7 @@ createDomainScriptsMountPath: /u01/weblogic
112113
# domain home. The script is located in the in-pod directory that is specified in the
113114
# `createDomainScriptsMountPath` property.
114115
#
115-
# If you need to provide your own scripts to create the domain home, instead of using the
116+
# If you need to provide your own scripts to create the domain home, instead of using the
116117
# built-it scripts, you must use this property to set the name of the script that you want
117118
# the create domain job to run.
118119
createDomainScriptName: create-domain-job.sh
@@ -124,7 +125,7 @@ createDomainScriptName: create-domain-job.sh
124125
# use the built-in WLST offline scripts in the `wlst` directory to create the WebLogic domain.
125126
# It can also be set to the relative path `wdt`, and then the built-in WDT scripts will be
126127
# used instead.
127-
#
128+
#
128129
# An absolute path is also supported to point to an arbitrary directory in the file system.
129130
#
130131
# The built-in scripts can be replaced by the user-provided scripts or model files as long

site/quickstart.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -44,13 +44,9 @@ $ docker pull traefik:1.7.4
4444
e. Pull the WebLogic 12.2.1.3 install image:
4545
```
4646
$ docker pull store/oracle/weblogic:12.2.1.3
47-
```
48-
f. Then patch the WebLogic image according to the instructions [here](https://github.com/oracle/docker-images/tree/master/OracleWebLogic/samples/12213-patch-wls-for-k8s), with these modifications:
49-
50-
* Change the `FROM` clause to extend the `store/oracle/weblogic:12.2.1.3` image from `Dockerfile.patch-ontop-12213`.
51-
* Comment out commands that apply patch 27117282.
47+
```
5248

53-
g. Copy the image to all the nodes in your cluster, or put it in a Docker registry that your cluster can access.
49+
f. Copy the image to all the nodes in your cluster, or put it in a Docker registry that your cluster can access.
5450

5551
## 2. Grant the Helm service account the `cluster-admin` role.
5652

@@ -168,6 +164,8 @@ domain namespace (`sample-domain1-ns`), and the `domainHomeImageBase` (`oracle/w
168164

169165
* Leaving the `image` empty unless you need to tag the new image that the script builds to a different name.
170166

167+
**NOTE**: Make sure that your `JAVA_HOME` is set to a Java JDK version 1.8 or later.
168+
171169
For example, assuming you named your copy `my-inputs.yaml`:
172170
```
173171
$ cd kubernetes/samples/scripts/create-weblogic-domain/domain-home-in-image

site/user-guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,5 +77,5 @@ You can find the operator image in
7777
* Flannel networking v0.9.1-amd64 (check with `docker images | grep flannel`).
7878
* Docker 18.03.1.ce (check with `docker version`).
7979
* Helm 2.8.2+ (check with `helm version`).
80-
* Oracle WebLogic Server 12.2.1.3.0 with patch 29135930.
80+
* Oracle WebLogic Server 12.2.1.3.0 with patch 29135930. The WebLogic Docker image, `store/oracle/weblogic:12.2.1.3`, meets this requirement.
8181
* You must have the `cluster-admin` role to install the operator.

0 commit comments

Comments
 (0)