Skip to content

Commit 73ae8b9

Browse files
committed
OWLS-66103, Additional documentation based on review
1 parent dda1621 commit 73ae8b9

File tree

2 files changed

+12
-14
lines changed

2 files changed

+12
-14
lines changed

kubernetes/samples/scripts/create-weblogic-domain/domain-home-on-pv/README.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,10 @@ The sample scripts demonstrate the creation of a WebLogic domain home on an exis
44

55
## Prerequisites
66

7-
Please read this guide before proceeding.
8-
* [Domain Resource](../../../../site/domain-resource.md)
7+
Before you begin, read this guide, [Domain Resource](../../../../../site/domain-resource.md)
98

109
The following prerequisites must be handled prior to running the create domain script:
11-
* Make sure the WebLogic Operator is running.
10+
* Make sure the WebLogic operator is running.
1211
* Create a Kubernetes namespace for the domain unless the intention is to use the default namespace.
1312
* In the same Kubernetes namespace, create the Kubernetes persistent volume where the domain home will be hosted, and the Kubernetes persistent volume claim for the domain. For samples to create a PV and PVC, refer to [Create sample PV and PVC](../../create-weblogic-domain-pv-pvc/README.md).
1413
* Create the Kubernetes secrets `username` and `password` of the admin account in the same Kubernetes namespace as the domain.
@@ -138,7 +137,7 @@ spec:
138137
domainHome: /shared/domains/domain1
139138
# If the domain home is in the image
140139
domainHomeInImage: false
141-
# The Operator currently does not support other images
140+
# The operator currently does not support other images
142141
image: "store/oracle/weblogic:19.1.0.0"
143142
# imagePullPolicy defaults to "Always" if image version is :latest
144143
imagePullPolicy: "IfNotPresent"
@@ -161,7 +160,7 @@ spec:
161160
# will be stored in the default logHome location of /shared/logs/<domainUID>/.
162161
logHome: /shared/logs/domain1
163162
# serverStartPolicy legal values are "NEVER", "ALWAYS", "IF_NEEDED", or "ADMIN_ONLY"
164-
# This determines which WebLogic Servers the Operator will start up when it discovers this Domain
163+
# This determines which WebLogic Servers the operator will start up when it discovers this Domain
165164
# - "ALWAYS" will start up all defined servers
166165
# - "ADMIN_ONLY" will start up only the administration server (no managed servers will be started)
167166
# - "IF_NEEDED" will start all non-clustered servers, including the administration server and clustered servers up to the replica count

site/domain-resource.md

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,20 @@
11

2-
# Domain Resource
2+
# Domain resource
33

4-
In this guide, we outline how to set up and configure your own domain resource which can be used to configure your WLS domain. The domain resource which can then be used to start the Kubernetes artifacts of the corresponding domain.
4+
In this guide, we outline how to set up and configure your own domain resource which can be used to configure your WLS domain. Then, you can use the domain resource to start the Kubernetes artifacts of the corresponding domain.
55

66
## Prerequisites
77

88
The following prerequisites must be fulfilled before proceeding with the creation of the resource.
9-
* Make sure the WebLogic Operator is running.
10-
* Create a Kubernetes namespace for the domain custom resource unless the intention is to use the default namespace.
11-
* Create the Kubernetes secrets `username` and `password` of the admin account in the same Kubernetes namespace as the domain custom resource.
9+
* Make sure the WebLogic operator is running.
10+
* Create a Kubernetes namespace for the domain resource unless the intention is to use the default namespace.
11+
* Create the Kubernetes secrets `username` and `password` of the admin account in the same Kubernetes namespace as the domain resource.
1212

1313
# YAML files
1414

15-
Domain resources are defined via Domain Custom Resource YAML files. For each WLS domain you want to create and configure, you should create one Domain Custom Resource YAML file and apply it. In the example below, you will find a Domain Custom Resource YAML file template that you can use as a basis. Copy the template and override the default settings so that it matches all the WLS domain parameters that define your WLS domain.
15+
Domain resources are defined using the domain resource YAML files. For each WLS domain you want to create and configure, you should create one domain resource YAML file and apply it. In the example below, you will find a domain resource YAML file template that you can use as a basis. Copy the template and override the default settings so that it matches all the WLS domain parameters that define your WLS domain.
1616

17-
For sample YAML templates, please refer to this example.
18-
* [Domain Resource example](../kubernetes/samples/scripts/create-weblogic-domain/domain-home-on-pv/README.md)
17+
For sample YAML templates, see the [Domain resource example](../kubernetes/samples/scripts/create-weblogic-domain/domain-home-on-pv/README.md)
1918

2019
# Kubernetes resources
2120

@@ -28,7 +27,7 @@ After you have written your YAML files, please use them to create your WLS domai
2827

2928
## Verify the results
3029

31-
To confirm that the domain custom resource was created, use this command:
30+
To confirm that the domain resource was created, use this command:
3231

3332
```
3433
kubectl describe domain [domain name] -n [namespace]

0 commit comments

Comments
 (0)