Skip to content

Commit

Permalink
Release notes for 3.3.8 (#2791)
Browse files Browse the repository at this point in the history
* Release notes for 3.3.8
  • Loading branch information
rjeberhard authored Feb 18, 2022
1 parent 063fd38 commit eb33caf
Show file tree
Hide file tree
Showing 23 changed files with 82 additions and 59 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 3.3.7.
This release was published on December 21, 2021.
The [current release of the operator](https://github.com/oracle/weblogic-kubernetes-operator/releases) is 3.3.8.
This release was published on February 18, 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:3.3.7}
IMAGE_NAME=${name:-ghcr.io/oracle/weblogic-kubernetes-operator:3.3.8}
SCRIPTPATH="$( cd "$(dirname "$0")" > /dev/null 2>&1 ; pwd -P )"

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

<artifactId>buildtime-reports</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion documentation/3.3/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 21, 2021. See the [operator prerequisites]({{< relref "/userguide/prerequisites/introduction.md" >}}) and [supported environments]({{< relref "/userguide/platforms/environments.md" >}}).
This release was published on February 18, 2022. See the [operator prerequisites]({{< relref "/userguide/prerequisites/introduction.md" >}}) and [supported environments]({{< relref "/userguide/platforms/environments.md" >}}).

***

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

| Date | Version | Introduces backward incompatibilities? | Change - See also, [Change log](#change-log). |
|--------------------|----------|---------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| February 18, 2022 | v3.3.8 | no | Resolved several issues related to WDT 2.0, Istio, and auxiliary images. |
| December 21, 2021 | v3.3.7 | no | Resolved two issues related to auxiliary images. |
| November 24, 2021 | v3.3.6 | no | Support added for a `hostAliases` field for WebLogic Server pod generation. |
| November 23, 2021 | v3.3.5 | no | Resolved several issues, including an issue related to collecting logs from failed Model in Image domains that used auxiliary images and an issue related to reading PodDisruptionBudget resources not created by the operator. |
Expand Down Expand Up @@ -50,6 +51,18 @@ draft: false

### Change log

#### Operator 3.3.8

* Resolved an issue where the WebLogic Server Administration Console is not accessible through port forwarding after upgrade to WebLogic Deploy Tooling (WDT) 2.0 ([#2776](https://github.com/oracle/weblogic-kubernetes-operator/pull/2776)).
* Resolved an issue where the operator would log a SEVERE message about failing to create the CRD even though the creation was successful ([#2772](https://github.com/oracle/weblogic-kubernetes-operator/pull/2772)).
* Domain resource status now correctly displays problems pulling auxiliary container images ([#2681](https://github.com/oracle/weblogic-kubernetes-operator/pull/2681)).
* Resolved an issue related to high CPU usage in the `startServer.sh` script ([#2684](https://github.com/oracle/weblogic-kubernetes-operator/pull/2684)).
* Resolved [issue #2685](https://github.com/oracle/weblogic-kubernetes-operator/issues/2685) related to an NPE while reading server health information ([#2692](https://github.com/oracle/weblogic-kubernetes-operator/pull/2692)).
* Resolved an issue related to the `create-domain.sh` sample script ([#2696](https://github.com/oracle/weblogic-kubernetes-operator/pull/2696)).
* Added validation to reject domain configurations that use the same `serverNamePrefix` for multiple clusters ([#2700](https://github.com/oracle/weblogic-kubernetes-operator/pull/2700)).
* Resolved an issue related to properly handling WDT archive `domainBin` directory updates ([#2704](https://github.com/oracle/weblogic-kubernetes-operator/pull/2704)).
* Restricted HTTP tunnelling for Istio related replication channels ([#2754](https://github.com/oracle/weblogic-kubernetes-operator/pull/2754)).

#### Operator 3.3.7

* Resolved an issue related to the incorrect validation of the auxiliary image path when the default location has been overridden ([#2659](https://github.com/oracle/weblogic-kubernetes-operator/pull/2659)).
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ weight: 2

For the current production release {{< latestVersion >}}:

* Kubernetes 1.19.15+, 1.20.6+, and 1.20.11+ (check with `kubectl version`).
* Kubernetes 1.19.15+, 1.20.11+, and 1.21.5+ (check with `kubectl version`).
* Flannel networking v0.13.0-amd64 or later (check with `docker images | grep flannel`), Calico networking v3.16.1 or later,
*or* OpenShift SDN on OpenShift 4.3 systems.
* Docker 18.9.1 or 19.03.1+ (check with `docker version`) *or* CRI-O 1.20.2+ (check with `crictl version | grep RuntimeVersion`).
Expand Down
2 changes: 1 addition & 1 deletion documentation/3.3/layouts/shortcodes/latestVersion.html
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.3.7
3.3.8
Loading

0 comments on commit eb33caf

Please sign in to comment.