Skip to content

Commit 30878ab

Browse files
committedAug 23, 2021
Update documentation
1 parent 066ed6d commit 30878ab

File tree

16 files changed

+46
-16
lines changed

16 files changed

+46
-16
lines changed
 

‎documentation/3.3/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.3.0.
34-
This release was published on July 20, 2021. See the [operator prerequisites]({{< relref "/userguide/prerequisites/introduction.md" >}}) and [supported environments]({{< relref "/userguide/platforms/environments.md" >}}).
33+
The [current release of the operator](https://github.com/oracle/weblogic-kubernetes-operator/releases) is 3.3.1.
34+
This release was published on August 23, 2021. See the [operator prerequisites]({{< relref "/userguide/prerequisites/introduction.md" >}}) and [supported environments]({{< relref "/userguide/platforms/environments.md" >}}).
3535

3636
***
3737

‎documentation/3.3/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.3.0
48+
image: ghcr.io/oracle/weblogic-kubernetes-operator:3.3.1
4949
imagePullPolicy: IfNotPresent
5050
internalDebugHttpPort: 30999
5151
javaLoggingLevel: INFO
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
title: "Handling security validations"
3+
date: 2020-06-30T08:55:00-05:00
4+
draft: false
5+
weight: 14
6+
description: "Why am I seeing these security warnings?"
7+
---
8+
9+
> After applying the July2021 PSU, I'm now seeing security warnings, such as:
10+
>
11+
> Description: Production Mode is enabled but user lockout settings are not secure in realm: myrealm, i.e. LockoutThreshold should not be greater than 5, LockoutDuration should not be less than 30.
12+
>
13+
> SOLUTION: Update the user lockout settings (LockoutThreshold, LockoutDuration) to be secure.
14+
15+
WebLogic Server has a new, important feature to ensure and help you secure your WLS domains when running in production. With the July 2021 PSU applied, WebLogic Server regularly validates your domain configuration settings against a set of security configuration guidelines to determine whether the domain meets key security guidelines recommended by Oracle. For more information and additional details, see [MOS Doc 2788605.1](https://support.oracle.com/rs?type=doc&id=2788605.1) "WebLogic Server Security Warnings Displayed Through the Admin Console" and [Review Potential Security Issues](https://docs.oracle.com/en/middleware/fusion-middleware/weblogic-server/12.2.1.4/lockd/secure.html#GUID-4148D1BE-2D54-4DA5-8E94-A35D48DCEF1D) in _Securing a Production Environment for Oracle WebLogic Server_.
16+
17+
Warnings may be at the level of the JDK, or that SSL is not enabled. Some warnings may recommend updating your WebLogic configuration. You can make the recommended configuration changes using an approach that depends on your [domain home source type]({{< relref "/userguide/managing-domains/choosing-a-model/_index.md" >}}):
18+
19+
- For Domain in PV, use the WebLogic Scripting Tool (WLST), WebLogic Server Administration Console, WebLogic Deploy Tooling (WDT), or [configuration overrides]({{< relref "/userguide/managing-domains/configoverrides/_index.md" >}}).
20+
21+
- For Domain in Image, create a new image with the recommended changes or use [configuration overrides]({{< relref "/userguide/managing-domains/configoverrides/_index.md" >}}).
22+
23+
- For Model in Image, supply model files with the recommended changes in its image's `modelHome` directory or use [runtime updates]({{< relref "/userguide/managing-domains/model-in-image/runtime-updates.md" >}}).

‎documentation/3.3/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.3.0
13+
$ docker pull ghcr.io/oracle/weblogic-kubernetes-operator:3.3.1
1414
```
1515

1616
1. Pull the Traefik ingress controller image:

‎documentation/3.3/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.3.0 \
53+
--set image=ghcr.io/oracle/weblogic-kubernetes-operator:3.3.1 \
5454
--set serviceAccount=sample-weblogic-operator-sa \
5555
--set "enableClusterRoleBinding=true" \
5656
--set "domainNamespaceSelectionStrategy=LabelSelector" \

‎documentation/3.3/content/release-notes.md

Lines changed: 7 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+
| August 23, 2021 | v3.3.1 | no | Resolved an issue related to managed Coherence cluster formation when using Istio and another issue related to Secret and ConfigMap validation. |
1112
| July 20, 2021 | v3.3.0 | no | Auxiliary image support. |
1213
| June 21, 2021 | v3.2.5 | no | Updated Oracle Linux libraries and resolved an issue related to repeated introspection. |
1314
| June 18, 2021 | v3.2.4 | no | Resolved several issues related to Istio, diagnostics, and recovery. |
@@ -43,6 +44,12 @@ draft: false
4344

4445
### Change log
4546

47+
#### Operator 3.3.1
48+
49+
* Resolved an issue related to managed Coherence cluster formation when using Istio ([#2499](https://github.com/oracle/weblogic-kubernetes-operator/pull/2499)).
50+
* Resolved an issue related to generating the internal certificate when using Istio ([#2486](https://github.com/oracle/weblogic-kubernetes-operator/pull/2486)).
51+
* Resolved an issue related to validating Secrets and ConfigMaps referenced by a Domain when the namespace has a larger number of such resources ([#2500](https://github.com/oracle/weblogic-kubernetes-operator/pull/2500)).
52+
4653
#### Operator 3.3.0
4754

4855
* [Auxiliary images support](https://oracle.github.io/weblogic-kubernetes-operator/userguide/managing-domains/model-in-image/auxiliary-images/).

‎documentation/3.3/content/samples/azure-kubernetes-service/domain-on-pv.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ This sample demonstrates how to use the [WebLogic Kubernetes Operator](/weblogic
2929
Clone the [WebLogic Kubernetes Operator repository](https://github.com/oracle/weblogic-kubernetes-operator) to your machine. We will use several scripts in this repository to create a WebLogic domain. This sample was tested with v3.1.1, but should work with the latest release.
3030

3131
```shell
32-
$ git clone --branch v3.3.0 https://github.com/oracle/weblogic-kubernetes-operator.git
32+
$ git clone --branch v3.3.1 https://github.com/oracle/weblogic-kubernetes-operator.git
3333
```
3434

3535
{{% notice info %}} The following sections of the sample instructions will guide you, step-by-step, through the process of setting up a WebLogic cluster on AKS - remaining as close as possible to a native Kubernetes experience. This lets you understand and customize each step. If you wish to have a more automated experience that abstracts some lower level details, you can skip to the [Automation](#automation) section.

‎documentation/3.3/content/samples/azure-kubernetes-service/model-in-image.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ This sample demonstrates how to use the [WebLogic Kubernetes Operator](/weblogic
3030
Clone the [WebLogic Kubernetes Operator repository](https://github.com/oracle/weblogic-kubernetes-operator) to your machine. We will use several scripts in this repository to create a WebLogic domain. This sample was tested with v3.1.1, but should work with the latest release.
3131

3232
```shell
33-
$ git clone --branch v3.3.0 https://github.com/oracle/weblogic-kubernetes-operator.git
33+
$ git clone --branch v3.3.1 https://github.com/oracle/weblogic-kubernetes-operator.git
3434
```
3535
```shell
3636
$ cd weblogic-kubernetes-operator

‎documentation/3.3/content/samples/domains/model-in-image/prerequisites.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ weight: 1
2323
$ cd /tmp
2424
```
2525
```shell
26-
$ git clone --branch v3.3.0 https://github.com/oracle/weblogic-kubernetes-operator.git
26+
$ git clone --branch v3.3.1 https://github.com/oracle/weblogic-kubernetes-operator.git
2727
```
2828

2929
> **Note**: We will refer to the top directory of the operator source tree as `/tmp/weblogic-kubernetes-operator`; however, you can use a different location.

‎documentation/3.3/content/samples/tanzu-kubernetes-service/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ Kubernetes Operators use [Helm](https://helm.sh/) to manage Kubernetes applicati
6363
Clone the repository.
6464

6565
```shell
66-
$ git clone --branch v3.3.0 https://github.com/oracle/weblogic-kubernetes-operator.git
66+
$ git clone --branch v3.3.1 https://github.com/oracle/weblogic-kubernetes-operator.git
6767
```
6868
```shell
6969
$ cd weblogic-kubernetes-operator

‎documentation/3.3/content/userguide/introduction/architecture.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ The operator consists of the following parts:
3737
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:
3838

3939
```shell
40-
$ docker pull ghcr.io/oracle/weblogic-kubernetes-operator:3.3.0
40+
$ docker pull ghcr.io/oracle/weblogic-kubernetes-operator:3.3.1
4141
```
4242

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

‎documentation/3.3/content/userguide/managing-domains/domain-lifecycle/restarting.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ d. Update the `image` field of the Domain YAML file, specifying the new image na
185185
```yaml
186186
domain:
187187
spec:
188-
image: ghcr.io/oracle/weblogic-updated:3.3.0
188+
image: ghcr.io/oracle/weblogic-updated:3.3.1
189189
```
190190
e. The operator will now initiate a rolling restart, which will apply the updated image, for all the servers in the domain.
191191

‎documentation/3.3/content/userguide/managing-operators/installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ the `helm upgrade` command requires that you supply a new Helm chart and image.
119119
```shell
120120
$ helm upgrade \
121121
--reuse-values \
122-
--set image=ghcr.io/oracle/weblogic-kubernetes-operator:3.3.0 \
122+
--set image=ghcr.io/oracle/weblogic-kubernetes-operator:3.3.1 \
123123
--namespace weblogic-operator-namespace \
124124
--wait \
125125
weblogic-operator \

‎documentation/3.3/content/userguide/managing-operators/using-helm.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ javaLoggingLevel: "FINE"
101101
##### `image`
102102
Specifies the container image containing the operator code.
103103

104-
Defaults to `ghcr.io/oracle/weblogic-kubernetes-operator:3.3.0`.
104+
Defaults to `ghcr.io/oracle/weblogic-kubernetes-operator:3.3.1`.
105105

106106
Example:
107107
```yaml

‎documentation/3.3/content/userguide/platforms/environments.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Container Services for use with Kubernetes* on OCI Compute, and on "Authorized C
2525

2626
WebLogic Server and the WebLogic Kubernetes Operator are certified and supported on Oracle Linux Cloud Native Environment:
2727
- Operator v2.6.0 is certified on OLCNE 1.1 and v3.2.5 is certified on OLCNE 1.3.
28-
- Operator v3.2.5 provides certified support of OLCNE 1.3 with Kubernetes 1.20.6 and CRI-O 1.20.6.
28+
- Operator v3.2.5 provides certified support of OLCNE 1.3 with Kubernetes 1.20.6 and CRI-O 1.20.2.
2929

3030
### Microsoft Azure Kubernetes Service
3131

‎documentation/3.3/content/userguide/prerequisites/introduction.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ description: "Review the prerequisites for the current release of the operator."
55
weight: 2
66
---
77

8-
For the current production release 3.3.0:
8+
For the current production release 3.3.1:
99

1010
* Kubernetes 1.16.15+, 1.17.13+, 1.18.10+, 1.19.7+, and 1.20.6+ (check with `kubectl version`).
1111
* Flannel networking v0.9.1-amd64 or later (check with `docker images | grep flannel`), Calico networking v3.16.1 or later,
1212
*or* OpenShift SDN on OpenShift 4.3 systems.
13-
* Docker 18.9.1 or 19.03.1+ (check with `docker version`) *or* CRI-O 1.20.6+ (check with `crictl version | grep RuntimeVersion`).
13+
* Docker 18.9.1 or 19.03.1+ (check with `docker version`) *or* CRI-O 1.20.2+ (check with `crictl version | grep RuntimeVersion`).
1414
* Helm 3.3.4+ (check with `helm version --client --short`).
1515
* For domain home source type `Model in Image`, WebLogic Deploy Tooling 1.9.11.
1616
* Either Oracle WebLogic Server 12.2.1.3.0 with patch 29135930, Oracle WebLogic Server 12.2.1.4.0, or Oracle WebLogic Server 14.1.1.0.0.

0 commit comments

Comments
 (0)
Failed to load comments.