Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ You can:
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/).

***
The [current release of the operator](https://github.com/oracle/weblogic-kubernetes-operator/releases) is 4.0.3.
This release was published on December 15, 2022.
The [current release of the operator](https://github.com/oracle/weblogic-kubernetes-operator/releases) is 4.0.4.
This release was published on December 20, 2022.
***

## Documentation
Expand Down
2 changes: 1 addition & 1 deletion buildDockerImage.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ while getopts "t:" optname; do
esac
done

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

# Proxy settings
Expand Down
2 changes: 1 addition & 1 deletion common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>oracle.kubernetes</groupId>
<artifactId>operator-parent</artifactId>
<version>4.0.3</version>
<version>4.0.4</version>
</parent>

<artifactId>common</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion documentation/4.0/content/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ using the operator to deploy and run a WebLogic domain container-packaged web ap
#### Current production release

The [current release of the operator](https://github.com/oracle/weblogic-kubernetes-operator/releases) is {{< latestVersion >}}.
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" >}}).
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" >}}).

***

Expand Down
9 changes: 9 additions & 0 deletions documentation/4.0/content/release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ draft: false

| Date | Version | Change - See also, [Change log](#change-log). |
|--------------------|----------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| 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. |
| 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. |
| 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. |
| November 4, 2022 | v4.0.1 | Resolved an issue where introspection would fail because the function `wlsVersionEarlierThan` was missing. |
Expand Down Expand Up @@ -62,6 +63,14 @@ draft: false

### Change log

#### Operator 4.0.4

* Resolved an issue related to the `logHomeLayout` field during schema conversion from "v8" to "v9" Domains.
* 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/).
* The default value for `logHomeLayout` is `ByServers`; however, the operator 3.4 behavior was consistent with the value of `Flat`.
* Therefore, schema conversion from "v8" to "v9" Domains now explicitly selects a `logHomeLayout` value of `Flat`.
* Resolved an issue during uninstall where the validating webhook was leaving behind a ValidatingWebhookConfiguration resource. This resource is now deleted.

#### Operator 4.0.3

* The Helm chart now excludes the operator's webhook from running in an Istio mesh.
Expand Down
2 changes: 1 addition & 1 deletion documentation/4.0/layouts/shortcodes/latestVersion.html
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.0.3
4.0.4
Loading