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/userguide/managing-domains/fmw-infra/_index.md
+25-19Lines changed: 25 additions & 19 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,16 +7,16 @@ pre = "<b> </b>"
7
7
8
8
Starting with release 2.2, the operator supports FMW Infrastructure domains.
9
9
This means domains that are created with the FMW Infrastructure installer rather than the WebLogic
10
-
installer. These domains contain the Java Required Files (JRF) feature and are
10
+
Server installer. These domains contain the Java Required Files (JRF) feature and are
11
11
the pre-requisite for "upper stack" products like Oracle SOA Suite, for example.
12
12
These domains also require a database and the use of the Repository
13
13
Creation Utility (RCU).
14
14
15
15
This section provides details about the special considerations for running
16
16
FMW Infrastructure domains with the operator. Other than those considerations
17
-
listed here, FMW Infrastructure domains work in the same way as WebLogic domains.
17
+
listed here, FMW Infrastructure domains work in the same way as WebLogic Server domains.
18
18
That is, the remainder of the documentation in this site applies equally to FMW
19
-
Infrastructure domains and WebLogic domains.
19
+
Infrastructure domains and WebLogic Server domains.
20
20
21
21
FMW Infrastructure domains are supported using both the "domain on a persistent volume"
22
22
and the "domain in a Docker image" [models]({{< relref "/userguide/managing-domains/choosing-a-model/_index.md" >}}).
@@ -49,12 +49,16 @@ A [sample](https://github.com/oracle/docker-images/tree/master/OracleFMWInfrastr
49
49
is provided in the Oracle GitHub account that demonstrates how to create a Docker image
50
50
to run FMW Infrastructure.
51
51
52
+
Please consult the [README](https://github.com/oracle/docker-images/blob/master/OracleFMWInfrastructure/dockerfiles/12.2.1.3/README.md) file associated with this sample for important prerequisite steps,
53
+
such as building or pulling the Server JRE Docker image and downloading the Fusion Middleware
54
+
Infrastructure installer binary.
55
+
52
56
After cloning the repository and downloading the installer from Oracle Technology Network
53
57
or e-delivery, you create your image by running the provided script:
54
58
55
59
```bash
56
60
cd docker-images/OracleFMWInfrastructure/dockerfiles
57
-
./buildDockerImage.sh -v 12.2.1.3 -g
61
+
./buildDockerImage.sh -v 12.2.1.3 -s
58
62
```
59
63
60
64
The image produced will be named `oracle/fmw-infrastructure:12.2.1.3`.
@@ -68,7 +72,7 @@ by running the provided script:
68
72
69
73
```bash
70
74
cd docker-images/OracleFMWInfrastructure/samples/12213-patch-fmw-for-k8s
71
-
./buildDockerImage.sh
75
+
./build.sh
72
76
```
73
77
74
78
This will produce an image named `oracle/fmw-infrastructure:12213-update-k8s`.
@@ -160,8 +164,10 @@ spec:
160
164
```
161
165
162
166
Notice that you can pass in environment variables to set the SID, the name of the PDB, and
163
-
so on. The documentation describes the other variables that are available. You should
164
-
also create a service to make the database available within the Kubernetes cluster with
167
+
so on. The documentation describes the other variables that are available. The `sys` password
168
+
defaults to `Oradoc_db1`. Follow the instructions in the documentation to reset this password.
169
+
170
+
You should also create a service to make the database available within the Kubernetes cluster with
165
171
a well known name. Here is an example:
166
172
167
173
```yaml
@@ -171,7 +177,6 @@ metadata:
171
177
name: oracle-db
172
178
namespace: default
173
179
spec:
174
-
clusterIP: 10.97.236.215
175
180
ports:
176
181
- name: tns
177
182
port: 1521
@@ -185,7 +190,7 @@ spec:
185
190
```
186
191
187
192
In the example above, the database would be visible in the cluster using the address
0 commit comments