Skip to content

Commit 886ac94

Browse files
authoredDec 15, 2022
Prepare for 4.0.3 (#3757)
* Prepare for 4.0.3
1 parent f2d9e3a commit 886ac94

File tree

20 files changed

+82
-63
lines changed

20 files changed

+82
-63
lines changed
 

‎README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ You can:
2525
The fastest way to experience the operator is to follow the [Quick Start guide](https://oracle.github.io/weblogic-kubernetes-operator/quickstart/), or you can peruse our [documentation](https://oracle.github.io/weblogic-kubernetes-operator), read our [blogs](https://blogs.oracle.com/weblogicserver/how-to-weblogic-server-on-kubernetes), or try out the [samples](https://oracle.github.io/weblogic-kubernetes-operator/samples/).
2626

2727
***
28-
The [current release of the operator](https://github.com/oracle/weblogic-kubernetes-operator/releases) is 4.0.2.
29-
This release was published on December 9, 2022.
28+
The [current release of the operator](https://github.com/oracle/weblogic-kubernetes-operator/releases) is 4.0.3.
29+
This release was published on December 15, 2022.
3030
***
3131

3232
## Documentation

‎buildDockerImage.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ while getopts "t:" optname; do
3333
esac
3434
done
3535

36-
IMAGE_NAME=${name:-ghcr.io/oracle/weblogic-kubernetes-operator:4.0.2}
36+
IMAGE_NAME=${name:-ghcr.io/oracle/weblogic-kubernetes-operator:4.0.3}
3737
SCRIPTPATH="$( cd "$(dirname "$0")" > /dev/null 2>&1 ; pwd -P )"
3838

3939
# Proxy settings

‎common/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>oracle.kubernetes</groupId>
88
<artifactId>operator-parent</artifactId>
9-
<version>4.0.2</version>
9+
<version>4.0.3</version>
1010
</parent>
1111

1212
<artifactId>common</artifactId>

‎documentation/4.0/content/_index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ using the operator to deploy and run a WebLogic domain container-packaged web ap
3131
#### Current production release
3232

3333
The [current release of the operator](https://github.com/oracle/weblogic-kubernetes-operator/releases) is {{< latestVersion >}}.
34-
This release was published on December 9, 2022. See the [operator prerequisites]({{< relref "/introduction/prerequisites/introduction.md" >}}) and [supported environments]({{< relref "/introduction/platforms/environments.md" >}}).
34+
This release was published on December 15, 2022. See the [operator prerequisites]({{< relref "/introduction/prerequisites/introduction.md" >}}) and [supported environments]({{< relref "/introduction/platforms/environments.md" >}}).
3535

3636
***
3737

‎documentation/4.0/content/release-notes.md

+9
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ draft: false
1010

1111
| Date | Version | Change - See also, [Change log](#change-log). |
1212
|--------------------|----------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
13+
| December 15, 2022 | v4.0.3 | Resolved a set of issues related to Istio strict mutual TLS mode and an issue related to the `Completed` status being set too early during cluster scale down. |
1314
| December 9, 2022 | v4.0.2 | Resolved a set of issues related to automatic schema conversion from Domain "v8" to "v9 and an issue related to Model in Image domains and secured production mode. |
1415
| November 4, 2022 | v4.0.1 | Resolved an issue where introspection would fail because the function `wlsVersionEarlierThan` was missing. |
1516
| November 2, 2022 | v4.0.0 | New Cluster resource for Horizontal Pod Autoscaling (HPA). Domain resource "v9" with auxiliary image simplification, improved status reporting, and improved failure retry predictability and transparency. Istio and other service mesh support enabled automatically. Kubernetes 1.24 and 1.25 support. Minimum Kubernetes version is now 1.21. |
@@ -61,6 +62,14 @@ draft: false
6162

6263
### Change log
6364

65+
#### Operator 4.0.3
66+
67+
* The Helm chart now excludes the operator's webhook from running in an Istio mesh.
68+
* Communication from the operator to WebLogic Server instances or to the WebLogic Monitoring Exporter sidecar use the service name and namespace rather than IP addresses to be more compatible with Istio strict mutual TLS mode.
69+
* Resolved an issue where the `Completed` status condition would be set to true too early during the scale down of a cluster to 0 replicas.
70+
* The Model in Image sample now uses "v9" style auxiliary images.
71+
* The coordination between the periodic listing of Domain and Cluster resources and the processing of watch notifications has been improved to increase operator efficiency.
72+
6473
#### Operator 4.0.2
6574

6675
* The Helm chart now supports configuring [tolerations](https://kubernetes.io/docs/concepts/scheduling-eviction/taint-and-toleration/) for the operator's deployment.
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4.0.2
1+
4.0.3

0 commit comments

Comments
 (0)