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/faq/oci-fss-pv.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ draft: false
5
5
weight: 6
6
6
---
7
7
8
-
If you are running your Kubernetes cluster on Oracle Container Engine
8
+
If you are running your Kubernetes cluster on Oracle Container Engine
9
9
for Kubernetes (commonly known as OKE), and you use OCI File Storage (FSS)
10
10
for persistent volumes to store the WebLogic domain home, then the file system
11
11
handling demonstrated in the operator persistent volume sample will require
@@ -23,7 +23,7 @@ see [Persistent storage]({{< relref "/userguide/managing-domains/persistent-stor
23
23
{{% /notice %}}
24
24
25
25
26
-
### Failure during domain creation with persistent volume sample
26
+
####Failure during domain creation with persistent volume sample
27
27
28
28
The existing sample for [creation of a domain home on persistent volume](https://github.com/oracle/weblogic-kubernetes-operator/tree/master/kubernetes/samples/scripts/create-weblogic-domain/domain-home-on-pv)
29
29
uses a Kubernetes job to create the domain. The sample uses an
@@ -60,7 +60,7 @@ Init Containers:
60
60
:
61
61
```
62
62
63
-
### Updating the domain on persistent volume sample
63
+
####Updating the domain on persistent volume sample
64
64
In the following snippet of the [create-domain-job-template.yaml](https://github.com/oracle/weblogic-kubernetes-operator/blob/master/kubernetes/samples/scripts/create-weblogic-domain/domain-home-on-pv/create-domain-job-template.yaml),
65
65
you can see the updated `command` for the init container:
Copy file name to clipboardExpand all lines: docs-source/content/samples/simple/domains/soa-domain/_index.md
+17-17Lines changed: 17 additions & 17 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ PVC, and the domain resource YAML file for deploying the generated SOA domain."
7
7
---
8
8
9
9
{{% notice warning %}}
10
-
Oracle SOA Suite is currently only supported for non-production use in Docker and Kubernetes. The information provided
10
+
Oracle SOA Suite is currently supported only for non-production use in Docker and Kubernetes. The information provided
11
11
in this document is a *preview* for early adopters who wish to experiment with Oracle SOA Suite in Kubernetes before
12
12
it is supported for production use.
13
13
{{% /notice %}}
@@ -22,15 +22,15 @@ artifacts of the corresponding domain.
22
22
Before you begin, we recommend the following:
23
23
24
24
* Review the [Domain resource]({{< relref "/userguide/managing-domains/domain-resource/_index.md" >}}) documentation.
25
-
* Review the [operator-prerequisites](https://oracle.github.io/weblogic-kubernetes-operator/userguide/introduction/introduction/#operator-prerequisites)
25
+
* Review the [operator-prerequisites](https://oracle.github.io/weblogic-kubernetes-operator/userguide/introduction/introduction/#operator-prerequisites)
26
26
section for the supported versions of Kubernetes and Helm.
The sample scripts for Oracle SOA Suite domain deployment are available at `<weblogic-kubernetes-operator-project>/kubernetes/samples/scripts/create-soa-domain`.
33
-
33
+
34
34
You must edit `create-domain-inputs.yaml` (or a copy of it) to provide the details for your domain.
35
35
Please refer to the configuration parameters below to understand what information you must
# An (optional) in-pod location for data storage of default and custom file stores.
191
191
# If not specified or the value is either not set or empty (e.g. dataHome: "") then the
192
192
# data storage directories are determined from the WebLogic domain home configuration.
193
193
dataHome: ""
194
-
194
+
195
195
# serverStartPolicy legal values are "NEVER", "IF_NEEDED", or "ADMIN_ONLY"
196
196
# This determines which WebLogic Servers the Operator will start up when it discovers this Domain
197
197
# - "NEVER" will not start any server in the domain
198
198
# - "ADMIN_ONLY" will start up only the administration server (no managed servers will be started)
199
199
# - "IF_NEEDED" will start all non-clustered servers, including the administration server and clustered servers up to the replica count
200
200
serverStartPolicy: "IF_NEEDED"
201
-
201
+
202
202
serverService:
203
203
precreateService: true
204
204
@@ -216,7 +216,7 @@ spec:
216
216
volumeMounts:
217
217
- mountPath: /u01/oracle/user_projects
218
218
name: weblogic-domain-storage-volume
219
-
219
+
220
220
# adminServer is used to configure the desired behavior for starting the administration server.
221
221
adminServer:
222
222
# serverStartState legal values are "RUNNING" or "ADMIN"
@@ -230,7 +230,7 @@ spec:
230
230
# nodePort: 30701
231
231
# Uncomment to export the T3Channel as a service
232
232
# - channelName: T3Channel
233
-
233
+
234
234
# clusters is used to configure the desired behavior for starting member servers of a cluster.
235
235
# If you use this entry, then the rules will be applied to ALL servers that are members of the named clusters.
236
236
clusters:
@@ -241,7 +241,7 @@ spec:
241
241
replicas: 2
242
242
# The number of managed servers to start for unlisted clusters
243
243
# replicas: 1
244
-
244
+
245
245
- clusterName: soa_cluster
246
246
serverService:
247
247
precreateService: true
@@ -463,7 +463,7 @@ $ kubectl get services -n NAMESPACE
463
463
```
464
464
465
465
Here is an example of the output of this command. You can verify that services for Administration Server and Managed Servers (for SOA and OSB clusters) are created for `soaessosb` domain type.
0 commit comments