Skip to content

Commit

Permalink
WebLogic Kubernetes Operator 4.0.2 (#3742)
Browse files Browse the repository at this point in the history
  • Loading branch information
rjeberhard authored Dec 10, 2022
1 parent 9fa9d85 commit 77e08ef
Show file tree
Hide file tree
Showing 20 changed files with 90 additions and 66 deletions.
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.1.
This release was published on November 4, 2022.
The [current release of the operator](https://github.com/oracle/weblogic-kubernetes-operator/releases) is 4.0.2.
This release was published on December 9, 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.1}
IMAGE_NAME=${name:-ghcr.io/oracle/weblogic-kubernetes-operator:4.0.2}
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.1</version>
<version>4.0.2</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 November 4, 2022. See the [operator prerequisites]({{< relref "/introduction/prerequisites/introduction.md" >}}) and [supported environments]({{< relref "/introduction/platforms/environments.md" >}}).
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" >}}).

***

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

| Date | Version | Change - See also, [Change log](#change-log). |
|--------------------|----------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| November 4, 2022 | v4.0.1 | Resolved an issue where introspection would fail because the function `wlsVersionEarlierThan` was missing. |
| 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. |
| 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. |
| October 26, 2022 | v3.4.4 | Support added to specify resource requests and limits for Monitoring Exporter sidecar containers. This release of the operator is compatible with running in the same Kubernetes cluster as additional operators from the upcoming 4.0 release. |
| October 26, 2022 | v3.4.4 | Support added to specify resource requests and limits for Monitoring Exporter sidecar containers. This release of the operator is compatible with running in the same Kubernetes cluster as additional operators from the upcoming 4.0 release. |
| August 25, 2022 | v3.4.3 | Resolved an issue related to introspector failure for non-English locales and improved concurrency for managing configuration override files. |
| August 9, 2022 | v3.4.2 | Updated several dependencies, including the Oracle Linux base for the container image. |
| June 13, 2022 | v3.4.1 | Resolved several issues related to Model in Image and introspection. |
Expand Down Expand Up @@ -60,6 +61,19 @@ draft: false

### Change log

#### Operator 4.0.2

* The Helm chart now supports configuring [tolerations](https://kubernetes.io/docs/concepts/scheduling-eviction/taint-and-toleration/) for the operator's deployment.
* Domain resource schema now supports `.spec.maxClusterUnavailable`, which is the default value for the maximum number of cluster members that can be temporarily unavailable, such as during a roll.
* Resolved an issue that would prevent Model in Image domains from working correctly when [Secured Production Mode](https://docs.oracle.com/en/middleware/fusion-middleware/weblogic-server/12.2.1.4/lockd/secure.html#GUID-ADF914EF-0FB6-446E-B6BF-D230D8B0A5B0) is enabled.
* Pods created for WebLogic Server instances that are members of a WebLogic cluster will now include the label `weblogic.clusterObservedGeneration` specifying the `metadata.generation` of the Cluster resource. This is similar to the already existing `weblogic.domainObservedGeneration` label that specifies the observed generation of the Domain resource.
* Schema conversion from "v8" to "v9" Domains now uses shorter name prefixes when converting "v8" style auxiliary images.
* The Helm chart specifies a more compatible `securityContext` for the operator's deployment when the `kubernetesPlatform` value is "OpenShift".
* The Node Manager instance running within the Pod created for each WebLogic Server instance [now supports additional configuration for how often to restart WebLogic before the Pod's liveness probe fails and the Pod is recreated](https://oracle.github.io/weblogic-kubernetes-operator/managing-domains/domain-lifecycle/liveness-readiness-probe-customization/#automatic-restart-of-failed-server-instances-by-node-manager).
* Samples and utility scripts now support the environment variables `KUBERNETES_CLI`, which defaults to `kubectl`, and `WLSIMG_BUILDER`, which defaults to `docker`, to make it easier to use these samples and scripts on platforms that use binaries with different names.
* Resolved an issue where a "v8" Domain that used auxiliary images and also configured `logHome` could be converted to a "v9" Domain that was invalid.
* Resolved an issue where Domains that had a `.spec.domainUid` that was different from the value of `.metadata.name` would not start.

#### Operator 4.0.1

* Resolved an issue where introspection would fail because the function `wlsVersionEarlierThan` was missing.
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.1
4.0.2
Loading

0 comments on commit 77e08ef

Please sign in to comment.