Skip to content

Commit 1c8f182

Browse files
committed
Update to 2.2.0
1 parent 455121b commit 1c8f182

File tree

586 files changed

+2270
-2263
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

586 files changed

+2270
-2263
lines changed

buildtime-reports/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>2.2</version>
10+
<version>2.2.0</version>
1111
</parent>
1212

1313
<artifactId>buildtime-reports</artifactId>

docs-source/content/_index.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]({{< relref "/quickstart/_index.md" >}}), or you can peruse our [documentation]({{< relref "/userguide/_index.md" >}}), read our [blogs](https://blogs.oracle.com/weblogicserver/updated-weblogic-kubernetes-support-with-operator-20), or try out the [samples]({{< relref "/samples/_index.md" >}}).
1818

1919
***
20-
The [current release of the operator](https://github.com/oracle/weblogic-kubernetes-operator/releases) is 2.2.
21-
This release was published on TBD.
20+
The [current release of the operator](https://github.com/oracle/weblogic-kubernetes-operator/releases) is 2.2.0.
21+
This release was published on June 5, 2019.
2222
***
2323

2424
#### Operator earlier versions

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:2.2
22+
$ docker pull oracle/weblogic-kubernetes-operator:2.2.0
2323
```
2424

2525
1. Pull the Traefik load balancer image:

docs-source/content/quickstart/install.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ $ helm install stable/traefik \
5757
$ helm install kubernetes/charts/weblogic-operator \
5858
--name sample-weblogic-operator \
5959
--namespace sample-weblogic-operator-ns \
60-
--set image=oracle/weblogic-kubernetes-operator:2.2 \
60+
--set image=oracle/weblogic-kubernetes-operator:2.2.0 \
6161
--set serviceAccount=sample-weblogic-operator-sa \
6262
--set "domainNamespaces={}" \
6363
--wait

docs-source/content/recent-changes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ This document tracks recent changes to the operator, especially ones that introd
1010

1111
| Date | Version | Introduces backward incompatibilities | Change |
1212
| --- | --- | --- | --- |
13-
| May 6, 2019 | v2.2 | no | Added support for FMW Infrastructure domains. WebLogic Server instances are now gracefully shut down by default and shutdown options are configurable. Operator is now built and runs on JDK 11.
13+
| June 5, 2019 | v2.2.0 | no | Added support for FMW Infrastructure domains. WebLogic Server instances are now gracefully shut down by default and shutdown options are configurable. Operator is now built and runs on JDK 11.
1414
| April 4, 2019 | v2.1 | no | Customers can add init and sidecar containers to generated pods.
1515
| March 4, 2019 | v2.0.1 | no | OpenShift support is now certified. Many bug fixes, including fixes for configuration overrides, cluster services, and domain status processing.
1616
| January 24, 2019 | v2.0 | yes; not compatible with 1.x releases, but is compatible with 2.0-rc2. | Final version numbers and documentation updates.

docs-source/content/release-notes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ draft: false
88

99
| Date | Version | Introduces backward incompatibilities | Change |
1010
| --- | --- | --- | --- |
11-
| May 6, 2019 | v2.2 | no | Added support for FMW Infrastructure domains. WebLogic Server instances are now gracefully shut down by default and shutdown options are configurable. Operator is now built and runs on JDK 11.
11+
| June 5, 2019 | v2.2.0 | no | Added support for FMW Infrastructure domains. WebLogic Server instances are now gracefully shut down by default and shutdown options are configurable. Operator is now built and runs on JDK 11.
1212
| April 4, 2019 | v2.1 | no | Customers can add init and sidecar containers to generated pods.
1313
| March 4, 2019 | v2.0.1 | no | OpenShift support is now certified. Many bug fixes, including fixes for configuration overrides, cluster services, and domain status processing.
1414
| January 24, 2019 | v2.0 | yes; not compatible with 1.x releases, but is compatible with 2.0-rc2. | Final version numbers and documentation updates.

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:2.2
21+
$ docker pull oracle/weblogic-kubernetes-operator:2.2.0
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/managing-domains/domain-lifecycle/startup.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ and which servers should be restarted. To start, stop, or restart servers, modif
1919
There are properties on the domain resource that specify which servers should be running,
2020
which servers should be restarted and the desired initial state. To start, stop, or restart servers, modify these properties on the domain resource
2121
(for example, by using `kubectl` or the Kubernetes REST API). The operator will notice the changes and apply them. Beginning,
22-
with operator version 2.2, there are now properties to control server shutdown handling, such as whether the shutdown
22+
with operator version 2.2.0, there are now properties to control server shutdown handling, such as whether the shutdown
2323
will be graceful, the timeout, and if in-flight sessions are given the opportunity to complete.
2424

2525
### Starting and stopping servers
@@ -261,7 +261,7 @@ such a label or annotation by modifying the `restartVersion`.
261261
{{% /notice %}}
262262

263263
{{% notice note %}}
264-
Prior to version 2.2, the operator incorrectly restarted servers when the `serverStartState` property was changed. Now,
264+
Prior to version 2.2.0, the operator incorrectly restarted servers when the `serverStartState` property was changed. Now,
265265
this property has no affect on already running servers.
266266
{{% /notice %}}
267267

docs-source/content/userguide/managing-domains/fmw-infra/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ weight = 5
55
pre = "<b> </b>"
66
+++
77

8-
Starting with release 2.2, the operator supports FMW Infrastructure domains.
8+
Starting with release 2.2.0, the operator supports FMW Infrastructure domains.
99
This means domains that are created with the FMW Infrastructure installer rather than the WebLogic
1010
Server installer. These domains contain the Java Required Files (JRF) feature and are
1111
the pre-requisite for "upper stack" products like Oracle SOA Suite, for example.
@@ -40,7 +40,7 @@ following limitations currently exist for FMW Infrastructure domains:
4040
FMW Infrastructure domains. Note that you can still use all of the scaling features,
4141
you just need to define the maximum size of your cluster at domain creation time.
4242
* FMW Infrastructure domains are not supported with any version of the operator
43-
before version 2.2.
43+
before version 2.2.0.
4444

4545

4646
#### Obtaining the FMW Infrastructure Docker Image

docs-source/content/userguide/managing-operators/using-the-operator/using-helm.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ javaLoggingLevel: "FINE"
101101

102102
Specifies the Docker image containing the operator code.
103103

104-
Defaults to `weblogic-kubernetes-operator:2.2`.
104+
Defaults to `weblogic-kubernetes-operator:2.2.0`.
105105

106106
Example:
107107
```

0 commit comments

Comments
 (0)