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
Before you begin, read this guide, [Domain Resource](../../../../../site/domain-resource.md)
9
8
10
9
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.
12
11
* Create a Kubernetes namespace for the domain unless the intention is to use the default namespace.
13
12
* 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).
14
13
* Create the Kubernetes secrets `username` and `password` of the admin account in the same Kubernetes namespace as the domain.
@@ -138,7 +137,7 @@ spec:
138
137
domainHome: /shared/domains/domain1
139
138
# If the domain home is in the image
140
139
domainHomeInImage: false
141
-
# The Operator currently does not support other images
140
+
# The operator currently does not support other images
142
141
image: "store/oracle/weblogic:19.1.0.0"
143
142
# imagePullPolicy defaults to "Always" if image version is :latest
144
143
imagePullPolicy: "IfNotPresent"
@@ -161,7 +160,7 @@ spec:
161
160
# will be stored in the default logHome location of /shared/logs/<domainUID>/.
162
161
logHome: /shared/logs/domain1
163
162
# 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
165
164
# - "ALWAYS" will start up all defined servers
166
165
# - "ADMIN_ONLY" will start up only the administration server (no managed servers will be started)
167
166
# - "IF_NEEDED" will start all non-clustered servers, including the administration server and clustered servers up to the replica count
Copy file name to clipboardExpand all lines: site/domain-resource.md
+8-9Lines changed: 8 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,21 +1,20 @@
1
1
2
-
# Domain Resource
2
+
# Domain resource
3
3
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.
5
5
6
6
## Prerequisites
7
7
8
8
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.
12
12
13
13
# YAML files
14
14
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.
16
16
17
-
For sample YAML templates, please refer to this example.
0 commit comments