Skip to content

Commit 9da9e6b

Browse files
committed
Prepare for operator 3.1.4
1 parent 8ba60d0 commit 9da9e6b

File tree

25 files changed

+61
-46
lines changed

25 files changed

+61
-46
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.3.
21-
This release was published on February 12, 2021.
20+
The [current release of the operator](https://github.com/oracle/weblogic-kubernetes-operator/releases) is 3.1.4.
21+
This release was published on February 17, 2021.
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:-ghcr.io/oracle/weblogic-kubernetes-operator:3.1.3}
36+
IMAGE_NAME=${name:-ghcr.io/oracle/weblogic-kubernetes-operator:3.1.4}
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.3</version>
11+
<version>3.1.4</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.3.
27-
This release was published on February 12, 2021. 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.4.
27+
This release was published on February 17, 2021. 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: ghcr.io/oracle/weblogic-kubernetes-operator:3.1.3
46+
image: ghcr.io/oracle/weblogic-kubernetes-operator:3.1.4
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
@@ -10,7 +10,7 @@ weight: 3
1010
1. Pull the operator image:
1111

1212
```bash
13-
$ docker pull ghcr.io/oracle/weblogic-kubernetes-operator:3.1.3
13+
$ docker pull ghcr.io/oracle/weblogic-kubernetes-operator:3.1.4
1414
```
1515

1616
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=ghcr.io/oracle/weblogic-kubernetes-operator:3.1.3 \
54+
--set image=ghcr.io/oracle/weblogic-kubernetes-operator:3.1.4 \
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+
| February 17, 2021 | v3.1.4 | no | Resolved a pair of issues -- TODO. |
1112
| February 12, 2021 | v3.1.3 | no | Resolved a pair of issues related to the operator running well in very large Kubernetes clusters. |
1213
| January 22, 2021 | v3.1.2 | no | Resolved an issue where the operator failed to start servers in which the pods were configured to have an annotation containing a forward slash. |
1314
| December 17, 2020 | v3.1.1 | no | Resolved an issue that caused unexpected server restarts when the domain had multiple WebLogic clusters. |
@@ -35,6 +36,10 @@ draft: false
3536

3637
### Change log
3738

39+
#### Operator 3.1.4
40+
41+
* Resolved an issue -- TODO ([#2189](https://github.com/oracle/weblogic-kubernetes-operator/pull/2189)).
42+
3843
#### Operator 3.1.3
3944

4045
* Resolved an issue that caused some WebLogic Servers to fail to start in large Kubernetes clusters where Kubernetes watch notifications were not reliably delivered ([#2188](https://github.com/oracle/weblogic-kubernetes-operator/pull/2188)).

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ The operator consists of the following parts:
1717
The operator is packaged in a [container image](https://github.com/orgs/oracle/packages/container/package/weblogic-kubernetes-operator) which you can access using the following `docker pull` commands:
1818

1919
```
20-
$ docker pull ghcr.io/oracle/weblogic-kubernetes-operator:3.1.3
20+
$ docker pull ghcr.io/oracle/weblogic-kubernetes-operator:3.1.4
2121
```
2222

2323
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.3:
19+
For the current production release 3.1.4:
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)