Skip to content

Commit a341c89

Browse files
author
Tom Barnes
authored
MII sample doc update. (#1763)
* MII sample doc update. Note this change is for master & 3.0.0-rc1 only (do not merge into develop) * MII sample doc update. Note this change is for master & 3.0.0-rc1 only (do not merge into develop)
1 parent 0962e92 commit a341c89

File tree

1 file changed

+12
-12
lines changed
  • docs-source/content/samples/simple/domains/model-in-image

1 file changed

+12
-12
lines changed

docs-source/content/samples/simple/domains/model-in-image/_index.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -98,18 +98,18 @@ Location | Description |
9898

9999
1. The `JAVA_HOME` environment variable must be set and must reference a valid JDK 8 or 11 installation.
100100

101-
1. Get the operator source from the `release/3.0.0-rc1` branch and put it in `/tmp/operator-source`.
101+
1. Get the operator source from the `release/3.0.0-rc1` branch and put it in `/tmp/weblogic-kubernetes-operator`.
102102

103103
For example:
104104

105105
```
106-
$ mkdir /tmp/operator-source
107-
$ cd /tmp/operator-source
106+
$ cd /tmp
108107
$ git clone https://github.com/oracle/weblogic-kubernetes-operator.git
108+
$ cd weblogic-kubernetes-operator
109109
$ git checkout release/3.0.0-rc1
110110
```
111111

112-
> **Note**: We will refer to the top directory of the operator source tree as `/tmp/operator-source`; however, you can use a different location.
112+
> **Note**: We will refer to the top directory of the operator source tree as `/tmp/weblogic-kubernetes-operator`; however, you can use a different location.
113113
114114
For additional information about obtaining the operator source, see the [Developer Guide Requirements](https://oracle.github.io/weblogic-kubernetes-operator/developerguide/requirements/).
115115

@@ -118,7 +118,7 @@ Location | Description |
118118

119119
```
120120
$ mkdir /tmp/mii-sample
121-
$ cp -r /tmp/operator-source/kubernetes/samples/scripts/create-weblogic-domain/model-in-image/* /tmp/mii-sample
121+
$ cp -r /tmp/weblogic-kubernetes-operator/kubernetes/samples/scripts/create-weblogic-domain/model-in-image/* /tmp/mii-sample
122122
```
123123

124124
> **Note**: We will refer to this working copy of the sample as `/tmp/mii-sample`; however, you can use a different location.
@@ -319,10 +319,10 @@ A JRF domain requires an infrastructure database and also requires initializing
319319
- In the local shell, `docker login container-registry.oracle.com`.
320320
- In the local shell, `docker pull container-registry.oracle.com/database/enterprise:12.2.0.1-slim`.
321321
322-
- Use the sample script in `/tmp/operator-source/kubernetes/samples/scripts/create-oracle-db-service` to create an Oracle database running in the pod, `oracle-db`.
322+
- Use the sample script in `/tmp/weblogic-kubernetes-operator/kubernetes/samples/scripts/create-oracle-db-service` to create an Oracle database running in the pod, `oracle-db`.
323323
324324
```
325-
$ cd /tmp/operator-source/kubernetes/samples/scripts/create-oracle-db-service
325+
$ cd /tmp/weblogic-kubernetes-operator/kubernetes/samples/scripts/create-oracle-db-service
326326
$ start-db-service.sh
327327
```
328328
@@ -333,12 +333,12 @@ A JRF domain requires an infrastructure database and also requires initializing
333333
**WARNING:** The Oracle Database Docker images are supported only for non-production use. For more details, see My Oracle Support note: Oracle Support for Database Running on Docker (Doc ID 2216342.1).
334334
335335
336-
2. Use the sample script in `/tmp/operator-source/kubernetes/samples/scripts/create-rcu-schema` to create the RCU schema with the schema prefix `FMW1`.
336+
2. Use the sample script in `/tmp/weblogic-kubernetes-operator/kubernetes/samples/scripts/create-rcu-schema` to create the RCU schema with the schema prefix `FMW1`.
337337
338338
Note that this script assumes `Oradoc_db1` is the DBA password, `Oradoc_db1` is the schema password, and that the database URL is `oracle-db.default.svc.cluster.local:1521/devpdb.k8s`.
339339
340340
```
341-
$ cd /tmp/operator-source/kubernetes/samples/scripts/create-rcu-schema
341+
$ cd /tmp/weblogic-kubernetes-operator/kubernetes/samples/scripts/create-rcu-schema
342342
$ ./create-rcu-schema.sh -s FMW1 -i container-registry.oracle.com/middleware/fmw-infrastructure:12.2.1.4
343343
```
344344
@@ -1732,8 +1732,8 @@ To remove the resources you have created in these samples:
17321732
17331733
1. Delete the domain resources.
17341734
```
1735-
$ /tmp/operator-source/kubernetes/samples/scripts/delete-domain/delete-weblogic-domain-resources.sh -d sample-domain1
1736-
$ /tmp/operator-source/kubernetes/samples/scripts/delete-domain/delete-weblogic-domain-resources.sh -d sample-domain2
1735+
$ /tmp/weblogic-kubernetes-operator/kubernetes/samples/scripts/delete-domain/delete-weblogic-domain-resources.sh -d sample-domain1
1736+
$ /tmp/weblogic-kubernetes-operator/kubernetes/samples/scripts/delete-domain/delete-weblogic-domain-resources.sh -d sample-domain2
17371737
```
17381738
17391739
This deletes the domain and any related resources that are labeled with the domain UID `sample-domain1` and `sample-domain2`.
@@ -1751,7 +1751,7 @@ To remove the resources you have created in these samples:
17511751
17521752
3. If you set up a database for `JRF`:
17531753
```
1754-
$ /tmp/operator-source/kubernetes/samples/scripts/create-oracle-db-service/stop-db-service.sh
1754+
$ /tmp/weblogic-kubernetes-operator/kubernetes/samples/scripts/create-oracle-db-service/stop-db-service.sh
17551755
```
17561756
17571757
4. Delete the operator and its namespace:

0 commit comments

Comments
 (0)