Skip to content

Commit 17b055a

Browse files
authored
Operator 4.0.4 (#3767)
* Operator 4.0.4 * Edits
1 parent 9c0d3ca commit 17b055a

File tree

20 files changed

+83
-64
lines changed

20 files changed

+83
-64
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.3.
29-
This release was published on December 15, 2022.
28+
The [current release of the operator](https://github.com/oracle/weblogic-kubernetes-operator/releases) is 4.0.4.
29+
This release was published on December 20, 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.3}
36+
IMAGE_NAME=${name:-ghcr.io/oracle/weblogic-kubernetes-operator:4.0.4}
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.3</version>
9+
<version>4.0.4</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 15, 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 20, 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 20, 2022 | v4.0.4 | Resolved an issue related to the automatic schema conversion of the `logHomeLayout` field and an issue related to stranding a ValidatingWebhookConfiguration resource on uninstall. |
1314
| 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. |
1415
| 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. |
1516
| November 4, 2022 | v4.0.1 | Resolved an issue where introspection would fail because the function `wlsVersionEarlierThan` was missing. |
@@ -62,6 +63,14 @@ draft: false
6263

6364
### Change log
6465

66+
#### Operator 4.0.4
67+
68+
* Resolved an issue related to the `logHomeLayout` field during schema conversion from "v8" to "v9" Domains.
69+
* Operator 4.0 introduced the `logHomeLayout` field to [control the organization of WebLogic Server instance log files](https://oracle.github.io/weblogic-kubernetes-operator/managing-domains/accessing-the-domain/logs/).
70+
* The default value for `logHomeLayout` is `ByServers`; however, the operator 3.4 behavior was consistent with the value of `Flat`.
71+
* Therefore, schema conversion from "v8" to "v9" Domains now explicitly selects a `logHomeLayout` value of `Flat`.
72+
* Resolved an issue during uninstall where the validating webhook was leaving behind a ValidatingWebhookConfiguration resource. This resource is now deleted.
73+
6574
#### Operator 4.0.3
6675

6776
* The Helm chart now excludes the operator's webhook from running in an Istio mesh.
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4.0.3
1+
4.0.4

0 commit comments

Comments
 (0)