Skip to content

Commit b674228

Browse files
authored
Update the release notes and versions in preparation for operator 3.2.2 (#2335)
* Prepare for operator 3.2.2 * Reference latest WIT
1 parent 9c696cf commit b674228

File tree

33 files changed

+52
-40
lines changed

33 files changed

+52
-40
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.2.1.
21-
This release was published on April 5, 2021.
20+
The [current release of the operator](https://github.com/oracle/weblogic-kubernetes-operator/releases) is 3.2.2.
21+
This release was published on April 27, 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.2.1}
36+
IMAGE_NAME=${name:-ghcr.io/oracle/weblogic-kubernetes-operator:3.2.2}
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.2.1</version>
11+
<version>3.2.2</version>
1212
</parent>
1313

1414
<artifactId>buildtime-reports</artifactId>

documentation/domains/Domain.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -590,7 +590,7 @@
590590
"type": "object",
591591
"properties": {
592592
"image": {
593-
"description": "The WebLogic Monitoring Exporter sidecar image name. Defaults to ghcr.io/oracle/weblogic-monitoring-exporter:2.0.1",
593+
"description": "The WebLogic Monitoring Exporter sidecar image name. Defaults to ghcr.io/oracle/weblogic-monitoring-exporter:2.0.2",
594594
"type": "string"
595595
},
596596
"imagePullPolicy": {

documentation/domains/Domain.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ The current status of the operation of the WebLogic domain. Updated automaticall
117117
| Name | Type | Description |
118118
| --- | --- | --- |
119119
| `configuration` | Map | The configuration for the WebLogic Monitoring Exporter sidecar. If specified, the operator will deploy a sidecar alongside each server instance. See https://github.com/oracle/weblogic-monitoring-exporter |
120-
| `image` | string | The WebLogic Monitoring Exporter sidecar image name. Defaults to ghcr.io/oracle/weblogic-monitoring-exporter:2.0.1 |
120+
| `image` | string | The WebLogic Monitoring Exporter sidecar image name. Defaults to ghcr.io/oracle/weblogic-monitoring-exporter:2.0.2 |
121121
| `imagePullPolicy` | string | The image pull policy for the WebLogic Monitoring Exporter sidecar image. Legal values are Always, Never, and IfNotPresent. Defaults to Always if image ends in :latest; IfNotPresent, otherwise. |
122122

123123
### Server Pod

documentation/staging/content/_index.md

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

33-
The [current release of the operator](https://github.com/oracle/weblogic-kubernetes-operator/releases) is 3.2.1.
34-
This release was published on April 5, 2021. See the operator prerequisites and supported environments [here]({{< relref "/userguide/introduction/introduction#operator-prerequisites" >}}).
33+
The [current release of the operator](https://github.com/oracle/weblogic-kubernetes-operator/releases) is 3.2.2.
34+
This release was published on April 27, 2021. See the operator prerequisites and supported environments [here]({{< relref "/userguide/introduction/introduction#operator-prerequisites" >}}).
3535

3636
***
3737

documentation/staging/content/faq/namespace-management.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ elkIntegrationEnabled: false
4545
externalDebugHttpPort: 30999
4646
externalRestEnabled: false
4747
externalRestHttpsPort: 31001
48-
image: ghcr.io/oracle/weblogic-kubernetes-operator:3.2.1
48+
image: ghcr.io/oracle/weblogic-kubernetes-operator:3.2.2
4949
imagePullPolicy: IfNotPresent
5050
internalDebugHttpPort: 30999
5151
istioEnabled: false

documentation/staging/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
```shell
13-
$ docker pull ghcr.io/oracle/weblogic-kubernetes-operator:3.2.1
13+
$ docker pull ghcr.io/oracle/weblogic-kubernetes-operator:3.2.2
1414
```
1515

1616
1. Pull the Traefik ingress controller image:

documentation/staging/content/quickstart/install.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ $ helm install traefik-operator traefik/traefik \
5050
```shell
5151
$ helm install sample-weblogic-operator kubernetes/charts/weblogic-operator \
5252
--namespace sample-weblogic-operator-ns \
53-
--set image=ghcr.io/oracle/weblogic-kubernetes-operator:3.2.1 \
53+
--set image=ghcr.io/oracle/weblogic-kubernetes-operator:3.2.2 \
5454
--set serviceAccount=sample-weblogic-operator-sa \
5555
--set "enableClusterRoleBinding=true" \
5656
--set "domainNamespaceSelectionStrategy=LabelSelector" \

documentation/staging/content/quickstart/prerequisites.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ The operator uses Helm to create and deploy the necessary resources and then run
1212
You should clone this repository to your local machine so that you have access to the
1313
various sample files mentioned throughout this guide:
1414
```shell
15-
$ git clone --branch v3.2.1 https://github.com/oracle/weblogic-kubernetes-operator
15+
$ git clone --branch v3.2.2 https://github.com/oracle/weblogic-kubernetes-operator
1616
```

0 commit comments

Comments
 (0)