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: site/quickstart.md
+19-7Lines changed: 19 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -45,9 +45,12 @@ e. Pull the WebLogic 12.2.1.3 install image:
45
45
```
46
46
$ docker pull store/oracle/weblogic:12.2.1.3
47
47
```
48
-
f. **TODO** remove this item when Monica has published the new image with the patch in it **TODO**
49
-
Then patch the WebLogic image according to these [instructions](https://github.com/oracle/docker-images/tree/master/OracleWebLogic/samples/12213-patch-wls-for-k8s),
50
-
and copy the image to all nodes in your cluster, or put it in a Docker registry that your cluster can access.
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.
52
+
53
+
g. Copy the image to all the nodes in your cluster, or put it in a Docker registry that your cluster can access.
51
54
52
55
## 2. Create a Traefik (Ingress-based) load balancer.
53
56
@@ -159,9 +162,10 @@ Follow the directions in the [README](../kubernetes/samples/scripts/create-weblo
159
162
including:
160
163
161
164
* Copying the sample `create-domain-inputs.yaml` file and updating your copy with the `domainUID` (`sample-domain1`),
162
-
domain namespace (`sample-domain1-ns`) and the `domainHomeImageBase` (`oracle/weblogic:12213-patch-wls-for-k8s`).
165
+
domain namespace (`sample-domain1-ns`), and the `domainHomeImageBase` (`oracle/weblogic:12213-patch-wls-for-k8s`).
166
+
167
+
* Setting `weblogicCredentialsSecretName` to the name of the secret containing the WebLogic credentials, in this case, `sample-domain1-weblogic-credentials`.
163
168
164
-
* Setting `weblogicCredentialsSecretName` to the name of the secret containing the WebLogic credentials.
165
169
By convention, the secret will be named`domainUID-weblogic-credentials` (where `domainUID` is replaced with the
166
170
actual `domainUID` value).
167
171
@@ -170,11 +174,19 @@ domain namespace (`sample-domain1-ns`) and the `domainHomeImageBase` (`oracle/we
170
174
For example, assuming you named your copy `my-inputs.yaml`:
171
175
```
172
176
$ cd kubernetes/samples/scripts/create-weblogic-domain/domain-home-in-image
0 commit comments