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: README.md
+8-10Lines changed: 8 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -183,29 +183,27 @@ There are times when a running domain needs to be updated with modified properti
183
183
This can be achieved by following the steps below. For convenience of discussion, we assume that the domain is originally created by the following example command, where `/path/to/weblogic-operator-output-directory` is a directory that is created in advance to store the files that are generated by the operator.
184
184
185
185
```
186
-
./create-weblogic-domain.sh \
187
-
-i create-domain-job-inputs.yaml \
188
-
-o /path/to/weblogic-operator-output-directory
189
-
186
+
./create-weblogic-domain.sh \
187
+
-i create-domain-job-inputs.yaml \
188
+
-o /path/to/weblogic-operator-output-directory
190
189
```
191
190
192
191
* Delete the domain using the [Delete WebLogic domain resources](kubernetes/delete-weblogic-domain-resources.sh) script.
* Delete the contents of the physical volume using the appropriate tools.
199
-
* Delete the contents in the `weblogic-domains/<domainUID>` directory under `/path/to/weblogic-operator-output-directory`, which is used in the previous run of the [Create WebLogic domain](kubectles/create-weblogic-domain.sh) script.
198
+
* Delete the contents in the `weblogic-domains/<domainUID>` directory under the outputdirectory that is used when the domain is originally created, which is `/path/to/weblogic-operator-output-directory` in our example.
200
199
* Modify the create WebLogic domain inputs file `create-domain-job-inputs.yaml`.
201
-
* Recreate all resources that are labeled with the `domainUID`, but are NOT created by the [Create WebLogic domain](kubernetes/create-weblogic-domain.sh) script. One example of such resources is the `secret` for the domain credentials, which often is created manually and may be labeled with `domainUID`. Any resources that are not labeled with the `domainUID` is not deleted by the [Delete WebLogic domain resources](kubernetes/delete-weblogic-domain-resources.sh) script, and therefore, do not need to be recreated.
200
+
* Recreate all resources that are labeled with the `domainUID`, but are not created by the [Create WebLogic domain](kubernetes/create-weblogic-domain.sh) script. One example of such resources is the `secret` for the domain credentials, which often is created manually and may be labeled with `domainUID`. Any resources that are not labeled with the `domainUID` is not deleted by the [Delete WebLogic domain resources](kubernetes/delete-weblogic-domain-resources.sh) script, and therefore, do not need to be recreated.
202
201
* Recreate the domain using the [Create WebLogic domain](kubectles/create-weblogic-domain.sh) script with the modified create WebLogic domain inputs file.
203
202
204
-
If for some reason the last step failed, repeat the steps above after deleting the failed create WebLogic domain job using the following command. The `<output-dir>` is the directory that is passed to the create WebLogic domain script via `-o`. It is `/path/to/weblogic-operator-output-directory` in our example.
203
+
If for some reason the last step failed, repeat the steps above after deleting the failed create WebLogic domain job using the following command. The `<output-dir>` is the directory that is passed to the create WebLogic domain script via `-o`, which is `/path/to/weblogic-operator-output-directory` in our example.
0 commit comments