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: documentation/domains/Domain.json
+8-8Lines changed: 8 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@
14
14
]
15
15
},
16
16
"serverService": {
17
-
"description": "Customization affecting the generation of Kubernetes Services for WebLogic Server instances.",
17
+
"description": "Customization affecting the generation of ClusterIP Services for WebLogic Server instances.",
18
18
"$ref": "#/definitions/ServerService"
19
19
},
20
20
"serverPod": {
@@ -31,7 +31,7 @@
31
31
]
32
32
},
33
33
"adminService": {
34
-
"description": "Customization affecting the generation of the Kubernetes Service for the Administration Server. These settings can also specify the creation of a second NodePort Service to expose specific channels or network access points outside the Kubernetes cluster.",
34
+
"description": "Customization affecting the generation of a NodePort Service for the Administration Server used to expose specific channels or network access points outside the Kubernetes cluster. See also `domains.spec.adminServer.serverService` for configuration affecting the generation of the ClusterIP Service.",
35
35
"$ref": "#/definitions/AdminService"
36
36
},
37
37
"restartVersion": {
@@ -51,14 +51,14 @@
51
51
}
52
52
},
53
53
"annotations": {
54
-
"description": "Annotations to associate with the Administration Server\u0027s Service(s).",
54
+
"description": "Annotations to associate with the Administration Server\u0027s NodePort Service, if it is created.",
55
55
"additionalProperties": {
56
56
"type": "string"
57
57
},
58
58
"$ref": "#/definitions/Map"
59
59
},
60
60
"labels": {
61
-
"description": "Labels to associate with the Administration Server\u0027s Service(s).",
61
+
"description": "Labels to associate with the Administration Server\u0027s NodePort Service, if it is created.",
62
62
"additionalProperties": {
63
63
"type": "string"
64
64
},
@@ -94,7 +94,7 @@
94
94
]
95
95
},
96
96
"serverService": {
97
-
"description": "Customization affecting the generation of Kubernetes Services for WebLogic Server instances.",
97
+
"description": "Customization affecting the generation of ClusterIP Services for WebLogic Server instances.",
98
98
"$ref": "#/definitions/ServerService"
99
99
},
100
100
"maxUnavailable": {
@@ -296,7 +296,7 @@
296
296
"type": "string"
297
297
},
298
298
"serverService": {
299
-
"description": "Customization affecting the generation of Kubernetes Services for WebLogic Server instances.",
299
+
"description": "Customization affecting the generation of ClusterIP Services for WebLogic Server instances.",
300
300
"$ref": "#/definitions/ServerService"
301
301
},
302
302
"domainHome": {
@@ -524,7 +524,7 @@
524
524
]
525
525
},
526
526
"serverService": {
527
-
"description": "Customization affecting the generation of Kubernetes Services for WebLogic Server instances.",
527
+
"description": "Customization affecting the generation of ClusterIP Services for WebLogic Server instances.",
528
528
"$ref": "#/definitions/ServerService"
529
529
},
530
530
"serverName": {
@@ -810,7 +810,7 @@
810
810
"type": "object",
811
811
"properties": {
812
812
"precreateService": {
813
-
"description": "If true, the operator will create Services even for Managed Server instances without running Pods.",
813
+
"description": "If true, the operator will create ClusterIP Services even for WebLogic Server instances without running Pods.",
Copy file name to clipboardExpand all lines: documentation/domains/Domain.md
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -41,7 +41,7 @@ The specification of the operation of the WebLogic domain. Required.
41
41
| `replicas` | number | The default number of cluster member Managed Server instances to start for each WebLogic cluster in the domain configuration, unless `replicas` is specified for that cluster under the `clusters` field. For each cluster, the operator will sort cluster member Managed Server names from the WebLogic domain configuration by normalizing any numbers in the Managed Server name and then sorting alphabetically. This is done so that server names such as "managed-server10" come after "managed-server9". The operator will then start Managed Servers from the sorted list, up to the `replicas` count, unless specific Managed Servers are specified as starting in their entry under the `managedServers` field. In that case, the specified Managed Servers will be started and then additional cluster members will be started, up to the `replicas` count, by finding further cluster members in the sorted list that are not already started. If cluster members are started because of their entries under `managedServers`, then a cluster may have more cluster members running than its `replicas` count. Defaults to 0. |
42
42
|`restartVersion`| string | Changes to this field cause the operator to restart WebLogic Server instances. More info: https://oracle.github.io/weblogic-kubernetes-operator/userguide/managing-domains/domain-lifecycle/startup/#restarting-servers.|
43
43
|`serverPod`|[Server Pod](#server-pod)| Customization affecting the generation of Pods for WebLogic Server instances. |
44
-
|`serverService`|[Server Service](#server-service)| Customization affecting the generation of Kubernetes Services for WebLogic Server instances. |
44
+
|`serverService`|[Server Service](#server-service)| Customization affecting the generation of ClusterIP Services for WebLogic Server instances. |
45
45
|`serverStartPolicy`| string | The strategy for deciding whether to start a WebLogic Server instance. Legal values are ADMIN_ONLY, NEVER, or IF_NEEDED. Defaults to IF_NEEDED. More info: https://oracle.github.io/weblogic-kubernetes-operator/userguide/managing-domains/domain-lifecycle/startup/#starting-and-stopping-servers.|
46
46
|`serverStartState`| string | The WebLogic runtime state in which the server is to be started. Use ADMIN if the server should start in the admin state. Defaults to RUNNING. |
47
47
|`webLogicCredentialsSecret`|[Secret Reference](k8s1.13.5.md#secret-reference)| Reference to a Kubernetes Secret that contains the user name and password needed to boot a WebLogic Server under the `username` and `password` fields. |
@@ -65,10 +65,10 @@ The current status of the operation of the WebLogic domain. Updated automaticall
65
65
66
66
| Name | Type | Description |
67
67
| --- | --- | --- |
68
-
|`adminService`|[Admin Service](#admin-service)| Customization affecting the generation of the Kubernetes Service for the Administration Server. These settings can also specify the creation of a second NodePort Service to expose specific channels or network access points outside the Kubernetes cluster. |
68
+
|`adminService`|[Admin Service](#admin-service)| Customization affecting the generation of a NodePort Service for the Administration Server used to expose specific channels or network access points outside the Kubernetes cluster. See also `domains.spec.adminServer.serverService` for configuration affecting the generation of the ClusterIP Service. |
69
69
|`restartVersion`| string | Changes to this field cause the operator to restart WebLogic Server instances. More info: https://oracle.github.io/weblogic-kubernetes-operator/userguide/managing-domains/domain-lifecycle/startup/#restarting-servers.|
70
70
|`serverPod`|[Server Pod](#server-pod)| Customization affecting the generation of Pods for WebLogic Server instances. |
71
-
|`serverService`|[Server Service](#server-service)| Customization affecting the generation of Kubernetes Services for WebLogic Server instances. |
71
+
|`serverService`|[Server Service](#server-service)| Customization affecting the generation of ClusterIP Services for WebLogic Server instances. |
72
72
|`serverStartPolicy`| string | The strategy for deciding whether to start a WebLogic Server instance. Legal values are ALWAYS, NEVER, or IF_NEEDED. Defaults to IF_NEEDED. More info: https://oracle.github.io/weblogic-kubernetes-operator/userguide/managing-domains/domain-lifecycle/startup/#starting-and-stopping-servers.|
73
73
|`serverStartState`| string | The WebLogic runtime state in which the server is to be started. Use ADMIN if the server should start in the admin state. Defaults to RUNNING. |
74
74
@@ -85,7 +85,7 @@ The current status of the operation of the WebLogic domain. Updated automaticall
85
85
| `replicas` | number | The number of cluster member Managed Server instances to start for this WebLogic cluster. The operator will sort cluster member Managed Server names from the WebLogic domain configuration by normalizing any numbers in the Managed Server name and then sorting alphabetically. This is done so that server names such as "managed-server10" come after "managed-server9". The operator will then start Managed Server instances from the sorted list, up to the `replicas` count, unless specific Managed Servers are specified as starting in their entry under the `managedServers` field. In that case, the specified Managed Server instances will be started and then additional cluster members will be started, up to the `replicas` count, by finding further cluster members in the sorted list that are not already started. If cluster members are started because of their related entries under `managedServers`, then this cluster may have more cluster members running than its `replicas` count. Defaults to `spec.replicas`, which defaults 0. |
86
86
|`restartVersion`| string | Changes to this field cause the operator to restart WebLogic Server instances. More info: https://oracle.github.io/weblogic-kubernetes-operator/userguide/managing-domains/domain-lifecycle/startup/#restarting-servers.|
87
87
|`serverPod`|[Server Pod](#server-pod)| Customization affecting the generation of Pods for WebLogic Server instances. |
88
-
|`serverService`|[Server Service](#server-service)| Customization affecting the generation of Kubernetes Services for WebLogic Server instances. |
88
+
|`serverService`|[Server Service](#server-service)| Customization affecting the generation of ClusterIP Services for WebLogic Server instances. |
89
89
|`serverStartPolicy`| string | The strategy for deciding whether to start a WebLogic Server instance. Legal values are NEVER, or IF_NEEDED. Defaults to IF_NEEDED. More info: https://oracle.github.io/weblogic-kubernetes-operator/userguide/managing-domains/domain-lifecycle/startup/#starting-and-stopping-servers.|
90
90
|`serverStartState`| string | The WebLogic runtime state in which the server is to be started. Use ADMIN if the server should start in the admin state. Defaults to RUNNING. |
91
91
@@ -108,7 +108,7 @@ The current status of the operation of the WebLogic domain. Updated automaticall
108
108
|`restartVersion`| string | Changes to this field cause the operator to restart WebLogic Server instances. More info: https://oracle.github.io/weblogic-kubernetes-operator/userguide/managing-domains/domain-lifecycle/startup/#restarting-servers.|
109
109
|`serverName`| string | The name of the Managed Server. This name must match the name of a Managed Server instance or of a dynamic cluster member name from a server template already defined in the WebLogic domain configuration. Required. |
110
110
|`serverPod`|[Server Pod](#server-pod)| Customization affecting the generation of Pods for WebLogic Server instances. |
111
-
|`serverService`|[Server Service](#server-service)| Customization affecting the generation of Kubernetes Services for WebLogic Server instances. |
111
+
|`serverService`|[Server Service](#server-service)| Customization affecting the generation of ClusterIP Services for WebLogic Server instances. |
112
112
|`serverStartPolicy`| string | The strategy for deciding whether to start a WebLogic Server instance. Legal values are ALWAYS, NEVER, or IF_NEEDED. Defaults to IF_NEEDED. More info: https://oracle.github.io/weblogic-kubernetes-operator/userguide/managing-domains/domain-lifecycle/startup/#starting-and-stopping-servers.|
113
113
|`serverStartState`| string | The WebLogic runtime state in which the server is to be started. Use ADMIN if the server should start in the admin state. Defaults to RUNNING. |
114
114
@@ -154,7 +154,7 @@ The current status of the operation of the WebLogic domain. Updated automaticall
154
154
| --- | --- | --- |
155
155
|`annotations`| Map | The annotations to be added to generated resources. |
156
156
|`labels`| Map | The labels to be added to generated resources. The label names must not start with "weblogic.". |
157
-
|`precreateService`| Boolean | If true, the operator will create Services even for Managed Server instances without running Pods. |
157
+
|`precreateService`| Boolean | If true, the operator will create ClusterIP Services even for WebLogic Server instances without running Pods. |
158
158
159
159
### Cluster Status
160
160
@@ -193,9 +193,9 @@ The current status of the operation of the WebLogic domain. Updated automaticall
193
193
194
194
| Name | Type | Description |
195
195
| --- | --- | --- |
196
-
|`annotations`| Map | Annotations to associate with the Administration Server's Service(s). |
196
+
|`annotations`| Map | Annotations to associate with the Administration Server's NodePort Service, if it is created. |
197
197
|`channels`| array of [Channel](#channel)| Specifies which of the Administration Server's WebLogic channels should be exposed outside the Kubernetes cluster via a NodePort Service, along with the port for each channel. If not specified, the Administration Server's NodePort Service will not be created. |
198
-
|`labels`| Map | Labels to associate with the Administration Server's Service(s). |
198
+
|`labels`| Map | Labels to associate with the Administration Server's NodePort Service, if it is created. |
0 commit comments