Skip to content

Commit 59c6083

Browse files
rjeberhardankedia
andauthored
Operator version 3.1.1 (#2108)
* Prepare for 3.1.1 * OWLS-86552 - Fix for multiple pod restarts during rolling update. ManagedServerUpAfterStep is executed after servers in all clusters started. (#2109) * Add PR reference Co-authored-by: Anil Kedia <37935279+ankedia@users.noreply.github.com>
1 parent 4a181bd commit 59c6083

File tree

26 files changed

+63
-47
lines changed

26 files changed

+63
-47
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ Oracle is finding ways for organizations using WebLogic Server to run important
1717
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/updated-weblogic-kubernetes-support-with-operator-20), or try out the [samples](https://oracle.github.io/weblogic-kubernetes-operator/samples/).
1818

1919
***
20-
The [current release of the operator](https://github.com/oracle/weblogic-kubernetes-operator/releases) is 3.1.0.
21-
This release was published on November 13, 2020.
20+
The [current release of the operator](https://github.com/oracle/weblogic-kubernetes-operator/releases) is 3.1.1.
21+
This release was published on December 17, 2020.
2222
***
2323

2424
# 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:-oracle/weblogic-kubernetes-operator:3.1.0}
36+
IMAGE_NAME=${name:-oracle/weblogic-kubernetes-operator:3.1.1}
3737
SCRIPTPATH="$( cd "$(dirname "$0")" > /dev/null 2>&1 ; pwd -P )"
3838

3939
# Proxy settings

buildtime-reports/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<parent>
99
<artifactId>operator-parent</artifactId>
1010
<groupId>oracle.kubernetes</groupId>
11-
<version>3.1.0</version>
11+
<version>3.1.1</version>
1212
</parent>
1313

1414
<artifactId>buildtime-reports</artifactId>

docs-source/content/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ using the operator to deploy and run a WebLogic domain container-packaged web ap
2323
***
2424
#### Current production release
2525

26-
The [current release of the operator](https://github.com/oracle/weblogic-kubernetes-operator/releases) is 3.1.0.
27-
This release was published on November 13, 2020. See the operator prerequisites and supported environments [here]({{< relref "/userguide/introduction/introduction#operator-prerequisites" >}}).
26+
The [current release of the operator](https://github.com/oracle/weblogic-kubernetes-operator/releases) is 3.1.1.
27+
This release was published on December 17, 2020. See the operator prerequisites and supported environments [here]({{< relref "/userguide/introduction/introduction#operator-prerequisites" >}}).
2828

2929
***
3030

docs-source/content/faq/namespace-management.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ elkIntegrationEnabled: false
4343
externalDebugHttpPort: 30999
4444
externalRestEnabled: false
4545
externalRestHttpsPort: 31001
46-
image: oracle/weblogic-kubernetes-operator:3.1.0
46+
image: oracle/weblogic-kubernetes-operator:3.1.1
4747
imagePullPolicy: IfNotPresent
4848
internalDebugHttpPort: 30999
4949
istioEnabled: false

docs-source/content/quickstart/get-images.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ and accept the license agreement for the [WebLogic Server image](https://hub.doc
1919
1. Pull the operator image:
2020

2121
```bash
22-
$ docker pull oracle/weblogic-kubernetes-operator:3.1.0
22+
$ docker pull oracle/weblogic-kubernetes-operator:3.1.1
2323
```
2424

2525
1. Pull the Traefik ingress controller image:

docs-source/content/quickstart/install.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ $ helm install traefik-operator traefik/traefik \
5151
```bash
5252
$ helm install sample-weblogic-operator kubernetes/charts/weblogic-operator \
5353
--namespace sample-weblogic-operator-ns \
54-
--set image=oracle/weblogic-kubernetes-operator:3.1.0 \
54+
--set image=oracle/weblogic-kubernetes-operator:3.1.1 \
5555
--set serviceAccount=sample-weblogic-operator-sa \
5656
--set "enableClusterRoleBinding=true" \
5757
--set "domainNamespaceSelectionStrategy=LabelSelector" \

docs-source/content/release-notes.md

Lines changed: 5 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 |
1010
| --- | --- | --- | --- |
11+
| December 17, 2020 | v3.1.1 | no | Resolved an issue that caused unexpected server restarts when the domain had multiple WebLogic clusters. |
1112
| November 24, 2020 | v3.0.4 | no | This release contains a back-ported fix from 3.1.0 for Managed Server pods that do not properly restart following a rolling activity. |
1213
| November 13, 2020 | v3.1.0 | no | Enhanced options for specifying managed namespaces. Helm 3.1.3+ now required. Added support for Tanzu Kubernetes Service. |
1314
| November 9, 2020 | v3.0.3 | no | This release contains a fix for pods that are stuck in the Terminating state after an unexpected shut down of a worker node. |
@@ -32,6 +33,10 @@ draft: false
3233

3334
### Change log
3435

36+
#### Operator 3.1.1
37+
38+
* Resolved an issue that caused unexpected server restarts when the domain had multiple WebLogic clusters ([#2109](https://github.com/oracle/weblogic-kubernetes-operator/pull/2109)).
39+
3540
#### Operator 3.1.0
3641

3742
* All fixes included in 3.0.1, 3.0.2, and 3.0.3 are included in 3.1.0.

docs-source/content/userguide/introduction/architecture.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ The operator is packaged in a [Docker image](https://hub.docker.com/r/oracle/web
1818

1919
```
2020
$ docker login
21-
$ docker pull oracle/weblogic-kubernetes-operator:3.1.0
21+
$ docker pull oracle/weblogic-kubernetes-operator:3.1.1
2222
```
2323

2424
For more details on acquiring the operator image and prerequisites for installing the operator, consult the [Quick Start guide]({{< relref "/quickstart/_index.md" >}}).

docs-source/content/userguide/introduction/introduction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Detailed instructions are available [here]({{< relref "/userguide/managing-opera
1616

1717
### Operator prerequisites
1818

19-
For the current production release 3.1.0:
19+
For the current production release 3.1.1:
2020

2121
* Kubernetes 1.14.8+, 1.15.7+, 1.16.0+, 1.17.0+, and 1.18.0+ (check with `kubectl version`).
2222
* Flannel networking v0.9.1-amd64 or later (check with `docker images | grep flannel`), Calico networking (Calico v3.16.1),

0 commit comments

Comments
 (0)