Skip to content

Commit 3d3a84f

Browse files
committed
Prepare for WKO 4.0.1
1 parent bb941c7 commit 3d3a84f

File tree

17 files changed

+23
-18
lines changed

17 files changed

+23
-18
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 4.0.0.
29-
This release was published on November 2, 2022.
28+
The [current release of the operator](https://github.com/oracle/weblogic-kubernetes-operator/releases) is 4.0.1.
29+
This release was published on November 4, 2022.
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:4.0.0}
36+
IMAGE_NAME=${name:-ghcr.io/oracle/weblogic-kubernetes-operator:4.0.1}
3737
SCRIPTPATH="$( cd "$(dirname "$0")" > /dev/null 2>&1 ; pwd -P )"
3838

3939
# Proxy settings

common/pom.xml

Lines changed: 1 addition & 1 deletion
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.0</version>
9+
<version>4.0.1</version>
1010
</parent>
1111

1212
<artifactId>common</artifactId>

documentation/4.0/content/release-notes.md

Lines changed: 5 additions & 0 deletions
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+
| November 4, 2022 | v4.0.1 | Resolved an issue where introspection would fail because the function `wlsVersionEarlierThan` was missing. |
1314
| 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. |
1415
| 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. |
1516
| 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. |
@@ -59,6 +60,10 @@ draft: false
5960

6061
### Change log
6162

63+
#### Operator 4.0.1
64+
65+
* Resolved an issue where introspection would fail because the function `wlsVersionEarlierThan` was missing.
66+
6267
#### Operator 4.0.0
6368

6469
##### Major Themes
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4.0.0
1+
4.0.1

domain-upgrader/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>4.0.0</version>
10+
<version>4.0.1</version>
1111
</parent>
1212

1313
<artifactId>domain-upgrader</artifactId>

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>4.0.0</version>
10+
<version>4.0.1</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>4.0.0</version>
10+
<version>4.0.1</version>
1111
</parent>
1212

1313
<artifactId>json-schema</artifactId>

kubernetes/charts/weblogic-operator/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ name: weblogic-operator
66
description: Helm chart for configuring the WebLogic operator.
77

88
type: application
9-
version: 4.0.0
10-
appVersion: 4.0.0
9+
version: 4.0.1
10+
appVersion: 4.0.1

kubernetes/charts/weblogic-operator/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ domainNamespaceSelectionStrategy: LabelSelector
5454
enableClusterRoleBinding: true
5555

5656
# image specifies the container image containing the operator.
57-
image: "ghcr.io/oracle/weblogic-kubernetes-operator:4.0.0"
57+
image: "ghcr.io/oracle/weblogic-kubernetes-operator:4.0.1"
5858

5959
# imagePullPolicy specifies the image pull policy for the operator's container image.
6060
imagePullPolicy: IfNotPresent

kubernetes/hands-on-lab/tutorials/install.operator.ocishell.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ An operator is an application-specific controller that extends Kubernetes to cre
77
#### Clone the operator repository to a Cloud Shell instance ####
88
First, clone the operator git repository to OCI Cloud Shell.
99
```shell
10-
$ git clone --branch v4.0.0 https://github.com/oracle/weblogic-kubernetes-operator.git
10+
$ git clone --branch v4.0.1 https://github.com/oracle/weblogic-kubernetes-operator.git
1111
```
1212
The output should be similar to the following:
1313
```shell

kubernetes/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<parent>
1010
<groupId>oracle.kubernetes</groupId>
1111
<artifactId>operator-parent</artifactId>
12-
<version>4.0.0</version>
12+
<version>4.0.1</version>
1313
</parent>
1414

1515
<artifactId>installation-tests</artifactId>

operator-build-maven-plugin/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>4.0.0</version>
10+
<version>4.0.1</version>
1111
</parent>
1212

1313
<artifactId>operator-build-maven-plugin</artifactId>

operator/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>4.0.0</version>
10+
<version>4.0.1</version>
1111
</parent>
1212

1313
<artifactId>weblogic-kubernetes-operator</artifactId>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
<groupId>oracle.kubernetes</groupId>
99
<artifactId>operator-parent</artifactId>
10-
<version>4.0.0</version>
10+
<version>4.0.1</version>
1111

1212
<modules>
1313
<module>operator</module>

sonar-project.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Required metadata
22
sonar.projectKey=weblogic-kubernetes-operator
33
sonar.projectName=WebLogic Kubernetes Operator
4-
sonar.projectVersion=4.0.0
4+
sonar.projectVersion=4.0.1
55
# Comma-separated paths to directories with sources (required)
66
sonar.sources=operator/src/main/java
77
sonar.java.source=11

swagger-generator/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>4.0.0</version>
10+
<version>4.0.1</version>
1111
</parent>
1212

1313
<artifactId>operator-swagger</artifactId>

0 commit comments

Comments
 (0)