Skip to content

Commit 7d55a8f

Browse files
authored
WebLogic Kubernetes Operator 3.4.7 (#4169)
1 parent 531ad24 commit 7d55a8f

File tree

21 files changed

+80
-64
lines changed

21 files changed

+80
-64
lines changed

README.md

Lines changed: 2 additions & 2 deletions
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 3.4.6.
29-
This release was published on February 17, 2023.
28+
The [current release of the operator](https://github.com/oracle/weblogic-kubernetes-operator/releases) is 3.4.7.
29+
This release was published on April 7, 2023.
3030
***
3131

3232
## Documentation

buildDockerImage.sh

Lines changed: 1 addition & 1 deletion
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:3.4.6}
36+
IMAGE_NAME=${name:-ghcr.io/oracle/weblogic-kubernetes-operator:3.4.7}
3737
SCRIPTPATH="$( cd "$(dirname "$0")" > /dev/null 2>&1 ; pwd -P )"
3838

3939
# Proxy settings

documentation/charts/index.yaml

Lines changed: 53 additions & 43 deletions
Large diffs are not rendered by default.
11.9 KB
Binary file not shown.

documentation/domains/Domain.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -724,7 +724,7 @@
724724
"type": "object",
725725
"properties": {
726726
"image": {
727-
"description": "The WebLogic Monitoring Exporter sidecar container image name. Defaults to ghcr.io/oracle/weblogic-monitoring-exporter:2.1.2",
727+
"description": "The WebLogic Monitoring Exporter sidecar container image name. Defaults to ghcr.io/oracle/weblogic-monitoring-exporter:2.1.3",
728728
"type": "string"
729729
},
730730
"imagePullPolicy": {

documentation/domains/Domain.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ The current status of the operation of the WebLogic domain. Updated automaticall
143143
| Name | Type | Description |
144144
| --- | --- | --- |
145145
| `configuration` | Map | The configuration for the WebLogic Monitoring Exporter. If WebLogic Server instances are already running and have the monitoring exporter sidecar container, then changes to this field will be propagated to the exporter without requiring the restart of the WebLogic Server instances. |
146-
| `image` | string | The WebLogic Monitoring Exporter sidecar container image name. Defaults to ghcr.io/oracle/weblogic-monitoring-exporter:2.1.2 |
146+
| `image` | string | The WebLogic Monitoring Exporter sidecar container image name. Defaults to ghcr.io/oracle/weblogic-monitoring-exporter:2.1.3 |
147147
| `imagePullPolicy` | string | The image pull policy for the WebLogic Monitoring Exporter sidecar container image. Legal values are Always, Never, and IfNotPresent. Defaults to Always if image ends in :latest; IfNotPresent, otherwise. |
148148
| `port` | number | The port exposed by the WebLogic Monitoring Exporter running in the sidecar container. Defaults to 8080. The port value must not conflict with a port used by any WebLogic Server instance, including the ports of built-in channels or network access points (NAPs). |
149149
| `resources` | [Resource Requirements](k8s1.13.5.md#resource-requirements) | Memory and CPU minimum requirements and limits for the Monitoring Exporter sidecar. See `kubectl explain pods.spec.containers.resources`. |

documentation/site/content/release-notes.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ draft: false
88

99
| Date | Version | Introduces backward incompatibilities? | Change - See also, [Change log](#change-log). |
1010
|--------------------|----------|---------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
11+
| April 7, 2023 | v3.4.7 | no | Resolved and issue related to WDT models that do not include AdminServerName and an update to prevent use of the SnakeYAML empty-arguments SafeConstructor constructor. |
1112
| February 17, 2023 | v3.4.6 | no | Resolved several issues related to WDT models for Model in Image, resolved an issue related to an exception while correcting container port names, and updates including the WebLogic Monitoring Exporter version. |
1213
| January 24, 2023 | v3.4.5 | no | Resolved an issue related to decorating the name of the ConfigMap created for Fluentd integration and dependency updates including WebLogic Monitoring Exporter, Jackson Databind, and the Oracle Linux base image. |
1314
| October 26, 2022 | v3.4.4 | no | 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. |
@@ -58,6 +59,11 @@ draft: false
5859

5960
### Change log
6061

62+
#### Operator 3.4.7
63+
64+
* Resolved an issue related to WDT models that do not contain AdminServerName.
65+
* Updated usage of the SnakeYAML SafeConstructor to avoid usage of the empty-arguments constructor.
66+
6167
#### Operator 3.4.6
6268

6369
* Resolved several issues related to WebLogic Deploy Tooling (WDT) models for Model in Image.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.4.6
1+
3.4.7

integration-tests/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>oracle.kubernetes</groupId>
99
<artifactId>operator-parent</artifactId>
10-
<version>3.4.6</version>
10+
<version>3.4.7</version>
1111
</parent>
1212

1313
<artifactId>integration-tests</artifactId>

json-schema-generator/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<artifactId>operator-parent</artifactId>
99
<groupId>oracle.kubernetes</groupId>
10-
<version>3.4.6</version>
10+
<version>3.4.7</version>
1111
</parent>
1212

1313
<artifactId>json-schema</artifactId>

0 commit comments

Comments
 (0)