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: docs-source/content/samples/simple/domains/soa-domain/_index.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,7 +22,7 @@ artifacts of the corresponding domain.
22
22
Before you begin, we recommend the following:
23
23
24
24
* Review the [Domain resource]({{< relref "/userguide/managing-domains/domain-resource/_index.md" >}}) documentation.
25
-
* Review the [operator-prerequisites](https://oracle.github.io/weblogic-kubernetes-operator/userguide/introduction/introduction/#operator-prerequisites)
25
+
* Review the [operatorprerequisites](https://oracle.github.io/weblogic-kubernetes-operator/userguide/introduction/introduction/#operator-prerequisites)
26
26
section for the supported versions of Kubernetes and Helm.
@@ -32,7 +32,7 @@ section for the supported versions of Kubernetes and Helm.
32
32
The sample scripts for Oracle SOA Suite domain deployment are available at `<weblogic-kubernetes-operator-project>/kubernetes/samples/scripts/create-soa-domain`.
33
33
34
34
You must edit `create-domain-inputs.yaml` (or a copy of it) to provide the details for your domain.
35
-
Please refer to the configuration parameters below to understand what information you must
35
+
Please refer to the configuration parameters below to understand the information that you must
Copy file name to clipboardExpand all lines: docs-source/content/userguide/managing-fmw-domains/soa-suite/_index.md
+22-22Lines changed: 22 additions & 22 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -23,7 +23,7 @@ it is supported for production use.
23
23
*[Running the Repository Creation Utility to set up your database schemas](#running-the-repository-creation-utility-to-set-up-your-database-schemas)
24
24
*[Create a Kubernetes secret with the RCU credentials](#create-a-kubernetes-secret-with-the-rcu-credentials)
25
25
*[Creating a SOA domain](#creating-a-soa-domain)
26
-
*[Configuring a Load balancer for SOA Suite domains](#configuring-a-load-balancer-for-soa-suite-domains)
26
+
*[Configuring a load balancer for SOA Suite domains](#configuring-a-load-balancer-for-soa-suite-domains)
27
27
*[Monitoring a SOA domain](#monitoring-a-soa-domain)
28
28
29
29
@@ -106,7 +106,7 @@ You can also create a Docker image containing the Oracle SOA Suite binaries. Thi
106
106
Please consult the [README](https://github.com/oracle/docker-images/blob/master/OracleSOASuite/dockerfiles/README.md) file for important prerequisite steps,
107
107
such as building or pulling the Server JRE Docker image, Oracle FMW Infrastructure Docker image, and downloading the Oracle SOA Suite installer and bundle patch binaries.
108
108
109
-
For the Fusion Middleware Infrastructure image, you must install the [required patch]({{< relref "/userguide/introduction/introduction/_index.md#prerequisites" >}}) to use this image with the Oracle WebLogic Kubernetes operator. A pre-built (and already patched) Fusion Middleware Infrastructure image, `container-registry.oracle.com/middleware/fmw-infrastructure:12.2.1.3-200109`, is available at `container-registry.oracle.com`. We recommend to pull and rename this image to build the Oracle SOA Suite image.
109
+
For the Fusion Middleware Infrastructure image, you must install the [required patch]({{< relref "/userguide/introduction/introduction/_index.md#prerequisites" >}}) to use this image with the Oracle WebLogic Kubernetes operator. A pre-built (and already patched) Fusion Middleware Infrastructure image, `container-registry.oracle.com/middleware/fmw-infrastructure:12.2.1.3-200109`, is available at `container-registry.oracle.com`. We recommend that you pull and rename this image to build the Oracle SOA Suite image.
110
110
111
111
112
112
```bash
@@ -115,7 +115,7 @@ For the Fusion Middleware Infrastructure image, you must install the [required p
115
115
```
116
116
117
117
{{% notice warning %}}
118
-
If you are pulling the Fusion Middleware Infrastructure image from `container-registry.oracle.com` you must use the image with the tag `12.2.1.3-200109`, no other tagged image will work for the Oracle SOA Suite image build.
118
+
If you are pulling the Fusion Middleware Infrastructure image from `container-registry.oracle.com`, you must use the image with the tag `12.2.1.3-200109`; no other tagged image will work for the Oracle SOA Suite image build.
119
119
{{% /notice %}}
120
120
121
121
You can also build the Fusion Middleware
@@ -128,7 +128,7 @@ Follow these steps to build the necessary images - a patched Fusion Middleware I
* Build `oracle/fmw-infrastructure:12.2.1.3` image as shown below:
131
+
* Build the `oracle/fmw-infrastructure:12.2.1.3` image as shown below:
132
132
133
133
```bash
134
134
$ cd docker-images/OracleFMWInfrastructure/dockerfiles
@@ -141,14 +141,15 @@ Follow these steps to build the necessary images - a patched Fusion Middleware I
141
141
$ cd docker-images/OracleFMWInfrastructure/samples/12213-patch-fmw-for-k8s
142
142
$ ./build.sh
143
143
```
144
-
This will produce an image named `oracle/fmw-infrastructure:12213-update-k8s`. You will need to rename this image, for example from `oracle/fmw-infrastructure:12213-update-k8s`
144
+
This will produce an image named `oracle/fmw-infrastructure:12213-update-k8s`. You will need to rename this image, for example from `oracle/fmw-infrastructure:12213-update-k8s`
145
145
to `oracle/fmw-infrastructure:12.2.1.3`, or update the samples to refer to the image you created.
146
146
147
147
```
148
148
$ docker tag oracle/fmw-infrastructure:12213-update-k8s oracle/fmw-infrastructure:12.2.1.3
149
149
```
150
-
* Download the Oracle SOA Suite installer, latest Oracle SOA bundle patch (`30638100` or later) and the patch `27117282` from Oracle Technology Network or e-delivery.
151
-
>NOTE: Copy the installer binaries to the same location as the Dockerfile and the patch ZIP files under the `docker-images/OracleSOASuite/dockerfiles/12.2.1.3/patches` folder.
150
+
* Download the Oracle SOA Suite installer, latest Oracle SOA bundle patch (`30638100` or later) and the patch `27117282` from the Oracle Technology Network or e-delivery.
151
+
152
+
>**NOTE**: Copy the installer binaries to the same location as the Dockerfile and the patch ZIP files under the `docker-images/OracleSOASuite/dockerfiles/12.2.1.3/patches` folder.
152
153
153
154
* Create the Oracle SOA Suite image by running the provided script:
154
155
@@ -199,7 +200,7 @@ If you prefer not to persist the database storage, follow the instructions in th
@@ -219,9 +220,9 @@ The name is set using the value of the `baseName` field in `create-pv-pvc-inputs
219
220
220
221
* Start the database and database service using the following commands:
221
222
222
-
>NOTE: Make sure you update the `kubernetes/samples/scripts/create-soa-domain/domain-home-on-pv/create-database/db-with-pv.yaml`
223
-
>file with the name of the PVC created in the previous step. Also update the value for all the occurrences of the namespace field
224
-
>to the namespace where the database PVC was createdin the previous step.
223
+
>**NOTE**: Make sure you update the `kubernetes/samples/scripts/create-soa-domain/domain-home-on-pv/create-database/db-with-pv.yaml`
224
+
>file with the name of the PVC created in the previous step. Also, update the value for all the occurrences of the namespace field
225
+
>to the namespace where the database PVC was created.
225
226
226
227
```bash
227
228
$ cd weblogic-kubernetes-operator/kubernetes/samples/scripts/create-soa-domain/domain-home-on-pv/create-database
@@ -315,7 +316,7 @@ value followed by an underscore and a component name, for example `SOA1_SOAINFRA
315
316
* The schema owner password (`-p`) will be the password you provided for regular schema users during RCU creation.
316
317
* The database administration user (`-u`) and password (`-q`).
317
318
* The `domainUID`for the domain (`-d`).
318
-
* The namespace the domain is in (`-n`),if omitted, then`default` is assumed.
319
+
* The namespace the domain is in (`-n`);if omitted, then`default` is assumed.
319
320
* The name of the secret (`-s`).
320
321
321
322
You can confirm the secret was created as expected with the `kubectl get secret` command.
@@ -348,21 +349,21 @@ type: Opaque
348
349
Now that you have your Docker images and you have created your RCU schemas, you are ready
349
350
to create your domain. To continue, follow the instructions in the [SOA Domain sample]({{< relref "/samples/simple/domains/soa-domain/_index.md">}}).
350
351
351
-
#### Configuring a Load balancer for SOA Suite domains
352
+
#### Configuring a load balancer for SOA Suite domains
352
353
353
354
An Ingress based load balancer can be configured to access the Oracle SOA and Oracle Service Bus domain application URLs.
354
-
Refer the [setup Ingress](https://oracle.github.io/weblogic-kubernetes-operator/userguide/managing-domains/ingress/) document for details.
355
+
Refer to the [setup Ingress](https://oracle.github.io/weblogic-kubernetes-operator/userguide/managing-domains/ingress/) document for details.
355
356
356
-
As part of the `ingress-per-domain` setup for Oracle SOA and Oracle Service Bus domains the `values.yaml` (under `ingress-per-domain` directory) need to be updated with the appropriate values from your environment. A sample `values.yaml` (for Traefik load balancer) is below:
357
+
As part of the `ingress-per-domain` setup for Oracle SOA and Oracle Service Bus domains, the `values.yaml`file (under the `ingress-per-domain` directory) needs to be updated with the appropriate values from your environment. A sample `values.yaml`file (for the Traefik load balancer) is shown below:
357
358
358
359
```bash
359
360
# Default values for ingress-per-domain.
360
361
# This is a YAML-formatted file.
361
362
# Declare variables to be passed into your templates.
Below are the pathbased Ingress routing rules (`spec.rules` section) that needs to be defined for Oracle SOA and Oracle Service Bus domains. You need to update the appropriate Ingress template yaml file based on the load balancer being used. For instance the template yaml for Traefik load balancer is located at `kubernetes/samples/charts/ingress-per-domain/templates/traefik-ingress.yaml`.
390
+
Below are the path-based, Ingress routing rules (`spec.rules` section) that need to be defined for Oracle SOA and Oracle Service Bus domains. You need to update the appropriate Ingress template YAML file based on the load balancer being used. For example, the template YAML file for the Traefik load balancer is located at `kubernetes/samples/charts/ingress-per-domain/templates/traefik-ingress.yaml`.
0 commit comments