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/release-notes.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ draft: false
8
8
9
9
| Date | Version | Introduces backward incompatibilities | Change |
10
10
| --- | --- | --- | --- |
11
-
| TBD | v2.2 | no | Added support for FMW Infrastructure domains. WebLogic server instances are now gracefully shutdown by default and shutdown options are configurable. Operator is now built and runs on JDK 11.
11
+
| TBD | v2.2 | no | Added support for FMW Infrastructure domains. WebLogic Server instances are now gracefully shutdown by default and shutdown options are configurable. Operator is now built and runs on JDK 11.
12
12
| April 4, 2019 | v2.1 | no | Customers can add init and sidecar containers to generated pods.
13
13
| March 4, 2019 | v2.0.1 | no | OpenShift support is now certified. Many bug fixes, including fixes for configuration overrides, cluster services, and domain status processing.
14
14
| January 24, 2019 | v2.0 | yes; not compatible with 1.x releases, but is compatible with 2.0-rc2. | Final version numbers and documentation updates.
If you copy the sample scripts to a different location, make sure that you copy everything in
83
-
the `<weblogic-kubernetes-operator-project>/kubernetes/samples/scripts` directory together
82
+
If you copy the sample scripts to a different location, make sure that you copy everything in
83
+
the `<weblogic-kubernetes-operator-project>/kubernetes/samples/scripts` directory together
84
84
into the target directory, maintaining the original directory hierarchy.
85
85
86
86
The default domain created by the script has the following characteristics:
87
87
88
88
* An Administration Server named `admin-server` listening on port `7001`.
89
89
* A configured cluster named `cluster-1` of size 5.
90
-
* Five Managed Servers, named `managed-server1`, `managed-server2` and so on, listening on port `8001`.
90
+
* Five Managed Servers, named `managed-server1`, `managed-server2`, and so on, listening on port `8001`.
91
91
* Log files that are located in `/shared/logs/<domainUID>`.
92
92
* No applications deployed.
93
93
* No data sources or JMS resources.
@@ -118,7 +118,7 @@ The following parameters can be provided in the inputs file.
118
118
| `imagePullSecretName` | Name of the Kubernetes secret to access the Docker Store to pull the WebLogic Server Docker image. The presence of the secret will be validated when this parameter is specified. | |
119
119
| `includeServerOutInPodLog` | Boolean indicating whether to include the server .out to the pod's stdout. | `true` |
120
120
| `initialManagedServerReplicas` | Number of Managed Servers to initially start for the domain. | `2` |
121
-
| `javaOptions` | Java options for starting the Administration and Managed Servers. A Java option can have references to one or more of the following pre-defined variables to obtain WebLogic domain information: `$(DOMAIN_NAME)`, `$(DOMAIN_HOME)`, `$(ADMIN_NAME)`, `$(ADMIN_PORT)`, and `$(SERVER_NAME)`. | `-Dweblogic.StdoutDebugEnabled=false` |
121
+
| `javaOptions` | Java options for starting the Administration Server and Managed Servers. A Java option can have references to one or more of the following pre-defined variables to obtain WebLogic domain information: `$(DOMAIN_NAME)`, `$(DOMAIN_HOME)`, `$(ADMIN_NAME)`, `$(ADMIN_PORT)`, and `$(SERVER_NAME)`. | `-Dweblogic.StdoutDebugEnabled=false` |
122
122
| `logHome` | The in-pod location for domain log, server logs, server out, and Node Manager log files. If not specified, the value is derived from the `domainUID` as `/shared/logs/<domainUID>`. | `/shared/logs/domain1` |
123
123
| `managedServerNameBase` | Base string used to generate Managed Server names. | `managed-server` |
124
124
| `managedServerPort` | Port number for each Managed Server. | `8001` |
@@ -134,24 +134,24 @@ The following parameters can be provided in the inputs file.
134
134
| `rcuDatabaseURL` | The database URL. | `database:1521/service` |
135
135
| `rcuCredentialsSecret` | The Kubernetes secret containing the database credentials. | `domain1-rcu-credentials` |
136
136
137
-
Note that the names of the Kubernetes resources in the generated YAML files may be formed with the
138
-
value of some of the properties specified in the `create-inputs.yaml` file. Those properties include
139
-
the `adminServerName`, `clusterName` and `managedServerNameBase`. If those values contain any
140
-
characters that are invalid in a Kubernetes service name, those characters are converted to
141
-
valid values in the generated YAML files. For example, an uppercase letter is converted to a
137
+
Note that the names of the Kubernetes resources in the generated YAML files may be formed with the
138
+
value of some of the properties specified in the `create-inputs.yaml` file. Those properties include
139
+
the `adminServerName`, `clusterName` and `managedServerNameBase`. If those values contain any
140
+
characters that are invalid in a Kubernetes service name, those characters are converted to
141
+
valid values in the generated YAML files. For example, an uppercase letter is converted to a
142
142
lowercase letter and an underscore `("_")` is converted to a hyphen `("-")`.
143
143
144
-
The sample demonstrates how to create a WebLogic domain home and associated Kubernetes resources for a domain
145
-
that only has one cluster. In addition, the sample provides the capability for users to supply their own scripts
144
+
The sample demonstrates how to create a WebLogic domain home and associated Kubernetes resources for a domain
145
+
that has one cluster only. In addition, the sample provides the capability for users to supply their own scripts
146
146
to create the domain home for other use cases. The generated domain YAML file could also be modified to cover more use cases.
147
147
148
148
#### Verify the results
149
149
150
150
The create script will verify that the domain was created, and will report failure if there was any error.
151
-
However, it may be desirable to manually verify the domain, even if just to gain familiarity with the
151
+
However, it may be desirable to manually verify the domain, even if just to gain familiarity with the
152
152
various Kubernetes objects that were created by the script.
153
153
154
-
Note that the example results below use the `default` Kubernetes namespace. If you are using a different
154
+
Note that the example results below use the `default` Kubernetes namespace. If you are using a different
155
155
namespace, you need to replace `NAMESPACE` in the example `kubectl` commands with the actual Kubernetes namespace.
156
156
157
157
##### Generated YAML files with the default inputs
@@ -184,10 +184,10 @@ spec:
184
184
imagePullPolicy: "IfNotPresent"
185
185
# Identify which Secret contains the credentials for pulling an image
186
186
#imagePullSecrets:
187
-
#- name:
187
+
#- name:
188
188
# Identify which Secret contains the WebLogic Admin credentials (note that there is an example of
189
189
# how to create that Secret at the end of this file)
190
-
webLogicCredentialsSecret:
190
+
webLogicCredentialsSecret:
191
191
name: fmw-domain-weblogic-credentials
192
192
# Whether to include the server out file into the pod's stdout, default is true
0 commit comments