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/domains/Domain.md
+14Lines changed: 14 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -23,6 +23,7 @@ DomainSpec is a description of a domain.
23
23
|`domainHome`| string | The folder for the WebLogic Domain. Not required. Defaults to /shared/domains/domains/domainUID if domainHomeInImage is false. Defaults to /u01/oracle/user_projects/domains/ if domainHomeInImage is true. |
24
24
|`domainHomeInImage`| Boolean | True if this domain's home is defined in the Docker image for the domain. Defaults to true. |
25
25
|`domainUID`| string | Domain unique identifier. Must be unique across the Kubernetes cluster. Not required. Defaults to the value of metadata.name. |
|`image`| string | The WebLogic Docker image; required when domainHomeInImage is true; otherwise, defaults to container-registry.oracle.com/middleware/weblogic:12.2.1.3. |
27
28
|`imagePullPolicy`| string | The image pull policy for the WebLogic Docker image. Legal values are Always, Never and IfNotPresent. Defaults to Always if image ends in :latest, IfNotPresent otherwise. |
28
29
|`imagePullSecrets`| array of [Local Object Reference](k8s1.13.5.md#local-object-reference)| A list of image pull secrets for the WebLogic Docker image. |
@@ -81,6 +82,12 @@ An element representing a cluster in the domain configuration.
81
82
|`serverStartPolicy`| string | The strategy for deciding whether to start a server. Legal values are NEVER, or IF_NEEDED. |
82
83
|`serverStartState`| string | The state in which the server is to be started. Use ADMIN if server should start in the admin state. Defaults to RUNNING. |
83
84
85
+
### Experimental
86
+
87
+
| Name | Type | Description |
88
+
| --- | --- | --- |
89
+
|`istio`|[Istio](#istio)| Istio service mesh integration configuration. |
90
+
84
91
### Managed Server
85
92
86
93
ManagedServer represents the operator configuration for a single Managed Server.
@@ -176,6 +183,13 @@ ServerPod describes the configuration for a Kubernetes pod for a server.
176
183
|`annotations`| Map | The annotations to be attached to generated resources. |
177
184
|`labels`| Map | The labels to be attached to generated resources. The label names must not start with 'weblogic.'. |
178
185
186
+
### Istio
187
+
188
+
| Name | Type | Description |
189
+
| --- | --- | --- |
190
+
|`enabled`| Boolean | True, if this domain is deployed under an Istio service mesh. Defaults to false. Not required. |
191
+
|`readinessPort`| number | The WebLogic readiness port for Istio. Defaults to 8888. Not required. |
0 commit comments