Skip to content

Commit 1876ada

Browse files
Operator version 3.0.1 (#1864)
* Prepare for 3.0.1 release * Ignore i and k * Reading comprehension * Correct JDK URL * lookup and save internalOperatorkey, if already exists * Update kindtest.sh * Review comment Co-authored-by: Lenny Phan <lenny.phan@oracle.com>
1 parent e00ef4c commit 1876ada

File tree

28 files changed

+63
-41
lines changed

28 files changed

+63
-41
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ ENV JAVA_HOME /usr/local/java
2424
ENV PATH /operator:$JAVA_HOME/bin:$PATH
2525

2626
ENV JAVA_VERSION 14.0.2
27-
ENV JAVA_URL https://download.java.net/java/GA/jdk14.0.2/205943a0976c4ed48cb16f1043c5c647/11/GPL/openjdk-14.0.2_linux-x64_bin.tar.gz
27+
ENV JAVA_URL https://download.java.net/java/GA/jdk14.0.2/205943a0976c4ed48cb16f1043c5c647/12/GPL/openjdk-14.0.2_linux-x64_bin.tar.gz
2828

2929
# Install Java and make the operator run with a non-root user id (1000 is the `oracle` user)
3030
RUN set -eux; \

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.0.0.
21-
This release was published on July 17, 2020.
20+
The [current release of the operator](https://github.com/oracle/weblogic-kubernetes-operator/releases) is 3.0.1.
21+
This release was published on August 13, 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.0.0}
36+
IMAGE_NAME=${name:-oracle/weblogic-kubernetes-operator:3.0.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.0.0</version>
11+
<version>3.0.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.0.0.
27-
This release was published on July 17, 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.0.1.
27+
This release was published on August 13, 2020. See the operator prerequisites and supported environments [here]({{< relref "/userguide/introduction/introduction#operator-prerequisites" >}}).
2828

2929
This release introduces _non-backward compatible_ changes; however, operators using this release can be run in the same
3030
Kubernetes cluster as operators using the 2.6.0 version allowing for staged migration. You can replace a 2.6.0 operator with a 3.x operator without needing to recreate any existing domains; however, you must delete the 2.6.0 Helm release and then install the 3.x version rather than using a Helm upgrade. When the 3.x operator starts, it will roll any running WebLogic Server instances

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ elkIntegrationEnabled: false
4040
externalDebugHttpPort: 30999
4141
externalRestEnabled: false
4242
externalRestHttpsPort: 31001
43-
image: oracle/weblogic-kubernetes-operator:3.0.0
43+
image: oracle/weblogic-kubernetes-operator:3.0.1
4444
imagePullPolicy: IfNotPresent
4545
internalDebugHttpPort: 30999
4646
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.0.0
22+
$ docker pull oracle/weblogic-kubernetes-operator:3.0.1
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
@@ -71,7 +71,7 @@ $ helm install traefik-operator stable/traefik \
7171
```bash
7272
$ helm install sample-weblogic-operator kubernetes/charts/weblogic-operator \
7373
--namespace sample-weblogic-operator-ns \
74-
--set image=oracle/weblogic-kubernetes-operator:3.0.0 \
74+
--set image=oracle/weblogic-kubernetes-operator:3.0.1 \
7575
--set serviceAccount=sample-weblogic-operator-sa \
7676
--set "domainNamespaces={}" \
7777
--wait

docs-source/content/release-notes.md

Lines changed: 1 addition & 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 13, 2020 | v3.0.1 | no | Fixed an issue preventing the REST interface from working after a Helm upgrade. Helm 3.1.3+ now required. |
1112
| July 17, 2020 | v3.0.0 | yes | Adds Model in Image feature and support for applying topology and configuration override changes without downtime. Removal of support for Helm 2.x. Operator performance improvements to manage many domains in the same Kubernetes cluster. |
1213
| June 22, 2020 | v2.6.0 | no | Kubernetes 1.16, 1.17, and 1.18 support. Removal of support for Kubernetes 1.13 and earlier. This release can be run in the same cluster with operators of either 2.5.0 and below, or with 3.x providing an upgrade path. Certified support of Oracle Linux Cloud Native Environment (OLCNE) 1.1 with Kubernetes 1.17.0.
1314
| February 26, 2020 | v2.5.0 | no | Support for Helm 3.x and OpenShift 4.3. Operator can be installed in a namespace-dedicated mode where operator requires no cluster-level Kubernetes privileges. This version is not supported on Kubernetes 1.16+; check the [prerequisites]({{< relref "/userguide/introduction/introduction#operator-prerequisites" >}}).

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.0.0
21+
$ docker pull oracle/weblogic-kubernetes-operator:3.0.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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ Detailed instructions are available [here]({{< relref "/userguide/managing-opera
1616

1717
### Operator prerequisites
1818

19-
For the current production release 3.0.0:
19+
For the current production release 3.0.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`) *or* OpenShift SDN on OpenShift 4.3 systems.
2323
* Docker 18.9.1 or 19.03.1 (check with `docker version`) *or* CRI-O 1.14.7 (check with `crictl version | grep RuntimeVersion`).
24-
* Helm 3.0.3+ (check with `helm version --client --short`).
24+
* Helm 3.1.3+ (check with `helm version --client --short`).
2525
* 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.
2626
* The existing WebLogic Docker image, `container-registry.oracle.com/middleware/weblogic:12.2.1.3 `,
2727
has all the necessary patches applied.

docs-source/content/userguide/managing-domains/domain-lifecycle/restarting.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ d. Update the `image` field of the Domain YAML file, specifying the new image na
188188
```
189189
domain:
190190
spec:
191-
image: oracle/weblogic-updated:3.0.0
191+
image: oracle/weblogic-updated:3.0.1
192192
```
193193
e. The operator will now initiate a rolling restart, which will apply the updated image, for all the servers in the domain.
194194

docs-source/content/userguide/managing-operators/installation/_index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ a 2.6.0 operator to a 3.x operator. Instead, you must delete the 2.6.0 operator
9595
The deletion of the 2.6.0 operator will _not affect_ the Domain CustomResourceDefinition (CRD) and will _not stop_ any
9696
WebLogic Server instances already running.
9797

98-
When the 3.0.0 operator is installed, it will automatically roll any running WebLogic Server instances created by the 2.6.0 operator.
98+
When the 3.x operator is installed, it will automatically roll any running WebLogic Server instances created by the 2.6.0 operator.
9999
This rolling restart will preserve WebLogic cluster availability guarantees (for clustered members only) similarly to any other rolling restart.
100100

101101
To delete the 2.6.0 operator:
@@ -104,7 +104,7 @@ To delete the 2.6.0 operator:
104104
$ helm delete weblogic-operator -n weblogic-operator-namespace
105105
```
106106

107-
Then install the 3.0.0 operator using the [installation](#install-the-operator-helm-chart) instructions above.
107+
Then install the 3.x operator using the [installation](#install-the-operator-helm-chart) instructions above.
108108

109109
The following instructions will be applicable to upgrade operators within the 3.x release family
110110
as additional versions are released.
@@ -115,7 +115,7 @@ the `helm upgrade` command requires that you supply a new Helm chart and image.
115115
```
116116
$ helm upgrade \
117117
--reuse-values \
118-
--set image=oracle/weblogic-kubernetes-operator:3.0.0 \
118+
--set image=oracle/weblogic-kubernetes-operator:3.0.1 \
119119
--namespace weblogic-operator-namespace \
120120
--wait \
121121
weblogic-operator \

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
@@ -129,7 +129,7 @@ javaLoggingLevel: "FINE"
129129

130130
Specifies the Docker image containing the operator code.
131131

132-
Defaults to `weblogic-kubernetes-operator:3.0.0`.
132+
Defaults to `weblogic-kubernetes-operator:3.0.1`.
133133

134134
Example:
135135
```

docs/charts/index.yaml

Lines changed: 20 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,91 +2,99 @@ apiVersion: v1
22
entries:
33
weblogic-operator:
44
- apiVersion: v1
5-
created: "2020-07-16T17:52:31.587801-04:00"
5+
created: "2020-08-11T15:14:12.218809-04:00"
6+
description: Helm chart for configuring the WebLogic operator.
7+
digest: e7654ad3f2168f54b3a4b133bf8a86ea12bc474e5ee1d3ab14e1cf53012e9772
8+
name: weblogic-operator
9+
urls:
10+
- https://oracle.github.io/weblogic-kubernetes-operator/charts/weblogic-operator-3.0.1.tgz
11+
version: 3.0.1
12+
- apiVersion: v1
13+
created: "2020-08-11T15:14:12.215675-04:00"
614
description: Helm chart for configuring the WebLogic operator.
715
digest: 303288a48a6075d52538bb4e17dd46f8b1431158ee81bc878d9f1f264d30192e
816
name: weblogic-operator
917
urls:
1018
- https://oracle.github.io/weblogic-kubernetes-operator/charts/weblogic-operator-3.0.0.tgz
1119
version: 3.0.0
1220
- apiVersion: v1
13-
created: "2020-07-16T17:52:31.584263-04:00"
21+
created: "2020-08-11T15:14:12.214502-04:00"
1422
description: Helm chart for configuring the WebLogic operator.
1523
digest: 5f4cd8f4f3282b52b5e90a1169f26986e8272671845053606ade9c855fb04151
1624
name: weblogic-operator
1725
urls:
1826
- https://oracle.github.io/weblogic-kubernetes-operator/charts/weblogic-operator-3.0.0-rc1.tgz
1927
version: 3.0.0-rc1
2028
- apiVersion: v1
21-
created: "2020-07-16T17:52:31.582236-04:00"
29+
created: "2020-08-11T15:14:12.212883-04:00"
2230
description: Helm chart for configuring the WebLogic operator.
2331
digest: d441888a8deae1b1339e7585e3b437dfd2533303e46e842d7378e16db665e234
2432
name: weblogic-operator
2533
urls:
2634
- https://oracle.github.io/weblogic-kubernetes-operator/charts/weblogic-operator-2.6.0.tgz
2735
version: 2.6.0
2836
- apiVersion: v1
29-
created: "2020-07-16T17:52:31.580289-04:00"
37+
created: "2020-08-11T15:14:12.21132-04:00"
3038
description: Helm chart for configuring the WebLogic operator.
3139
digest: fe41421b7dc45dc8a3b2888d3a626a37f5d3c8e1fa292fb6699deedc5e1db33d
3240
name: weblogic-operator
3341
urls:
3442
- https://oracle.github.io/weblogic-kubernetes-operator/charts/weblogic-operator-2.5.0.tgz
3543
version: 2.5.0
3644
- apiVersion: v1
37-
created: "2020-07-16T17:52:31.575884-04:00"
45+
created: "2020-08-11T15:14:12.210065-04:00"
3846
description: Helm chart for configuring the WebLogic operator.
3947
digest: b36bd32083f67453a62d089a2c09ce38e6655d88ac8a7b38691230c55c40e672
4048
name: weblogic-operator
4149
urls:
4250
- https://oracle.github.io/weblogic-kubernetes-operator/charts/weblogic-operator-2.4.0.tgz
4351
version: 2.4.0
4452
- apiVersion: v1
45-
created: "2020-07-16T17:52:31.574384-04:00"
53+
created: "2020-08-11T15:14:12.203115-04:00"
4654
description: Helm chart for configuring the WebLogic operator.
4755
digest: a3eafe4c2c6ff49384e56421201e59a3737d651af8d5b605b87a19eb1f6f1dc3
4856
name: weblogic-operator
4957
urls:
5058
- https://oracle.github.io/weblogic-kubernetes-operator/charts/weblogic-operator-2.3.1.tgz
5159
version: 2.3.1
5260
- apiVersion: v1
53-
created: "2020-07-16T17:52:31.571867-04:00"
61+
created: "2020-08-11T15:14:12.191067-04:00"
5462
description: Helm chart for configuring the WebLogic operator.
5563
digest: cbc6caaa6eb28e3c7e906ede14b2ae511a0b35fc12a8e3ab629155b09993e8b2
5664
name: weblogic-operator
5765
urls:
5866
- https://oracle.github.io/weblogic-kubernetes-operator/charts/weblogic-operator-2.3.0.tgz
5967
version: 2.3.0
6068
- apiVersion: v1
61-
created: "2020-07-16T17:52:31.570651-04:00"
69+
created: "2020-08-11T15:14:12.189715-04:00"
6270
description: Helm chart for configuring the WebLogic operator.
6371
digest: 23d5a1c554fa8211cc1e86b7ade09460917cb2069e68fb4bfdddafc8db44fdcd
6472
name: weblogic-operator
6573
urls:
6674
- https://oracle.github.io/weblogic-kubernetes-operator/charts/weblogic-operator-2.2.1.tgz
6775
version: 2.2.1
6876
- apiVersion: v1
69-
created: "2020-07-16T17:52:31.569366-04:00"
77+
created: "2020-08-11T15:14:12.188569-04:00"
7078
description: Helm chart for configuring the WebLogic operator.
7179
digest: bba303686cb55d84fe8c0d693a2436e7e686b028085b56e012f6381699a3911f
7280
name: weblogic-operator
7381
urls:
7482
- https://oracle.github.io/weblogic-kubernetes-operator/charts/weblogic-operator-2.2.0.tgz
7583
version: 2.2.0
7684
- apiVersion: v1
77-
created: "2020-07-16T17:52:31.567722-04:00"
85+
created: "2020-08-11T15:14:12.18727-04:00"
7886
description: Helm chart for configuring the WebLogic operator.
7987
digest: 391e23c0969ada5f0cd2a088ddc6f11f237f57521801ed3925db2149a8437a0d
8088
name: weblogic-operator
8189
urls:
8290
- https://oracle.github.io/weblogic-kubernetes-operator/charts/weblogic-operator-2.1.tgz
8391
version: "2.1"
8492
- apiVersion: v1
85-
created: "2020-07-16T17:52:31.5634-04:00"
93+
created: "2020-08-11T15:14:12.185637-04:00"
8694
description: Helm chart for configuring the WebLogic operator.
8795
digest: 298acda78ab73db6b7ba6f2752311bfa40c65874e03fb196b70976192211c1a5
8896
name: weblogic-operator
8997
urls:
9098
- https://oracle.github.io/weblogic-kubernetes-operator/charts/weblogic-operator-2.0.1.tgz
9199
version: 2.0.1
92-
generated: "2020-07-16T17:52:31.553485-04:00"
100+
generated: "2020-08-11T15:14:12.184184-04:00"
7.93 KB
Binary file not shown.

integration-tests/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>oracle.kubernetes</groupId>
99
<artifactId>operator-parent</artifactId>
10-
<version>3.0.0</version>
10+
<version>3.0.1</version>
1111
</parent>
1212

1313
<artifactId>operator-integration-tests</artifactId>

json-schema-maven-plugin/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>3.0.0</version>
10+
<version>3.0.1</version>
1111
</parent>
1212

1313
<artifactId>jsonschema-maven-plugin</artifactId>

json-schema/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>3.0.0</version>
10+
<version>3.0.1</version>
1111
</parent>
1212

1313
<artifactId>json-schema</artifactId>

kindtest.sh

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,8 @@ function usage {
5151
echo " (default: false) "
5252
echo " -x Number of threads to run the classes in parallel"
5353
echo " (default: 2) "
54+
echo " -d Reserved for future use"
55+
echo " -i Reserved for future use"
5456
echo " -h Help"
5557
exit $1
5658
}
@@ -67,7 +69,7 @@ cni_implementation="kindnet"
6769
parallel_run="false"
6870
threads="2"
6971

70-
while getopts ":h:n:o:t:v:c:x:p:" opt; do
72+
while getopts ":h:n:o:t:v:c:x:p:d:i:" opt; do
7173
case $opt in
7274
v) k8s_version="${OPTARG}"
7375
;;
@@ -85,6 +87,10 @@ while getopts ":h:n:o:t:v:c:x:p:" opt; do
8587
;;
8688
h) usage 0
8789
;;
90+
d) echo "Ignoring -d=${OPTARG}"
91+
;;
92+
i) echo "Ignoring -i=${OPTARG}"
93+
;;
8894
*) usage 1
8995
;;
9096
esac

kubernetes/charts/weblogic-operator/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33

44
name: weblogic-operator
55
apiVersion: v1
6-
version: 3.0.0
6+
version: 3.0.1
77
description: Helm chart for configuring the WebLogic operator.

kubernetes/charts/weblogic-operator/templates/_operator-secret.tpl

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,13 @@ data:
99
{{- if (and .externalRestEnabled (hasKey . "externalOperatorKey")) }}
1010
externalOperatorKey: {{ .externalOperatorKey | quote }}
1111
{{- end }}
12+
{{- $secret := (lookup "v1" "Secret" .Release.Namespace "weblogic-operator-secrets") }}
13+
{{- if $secret }}
14+
{{- $internalOperatorKey := index $secret.data "internalOperatorKey" }}
15+
{{- if $internalOperatorKey }}
16+
internalOperatorKey: {{ $internalOperatorKey }}
17+
{{- end }}
18+
{{- end }}
1219
metadata:
1320
labels:
1421
weblogic.operatorName: {{ .Release.Namespace | quote }}

kubernetes/charts/weblogic-operator/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ domainNamespaces:
2525
- "default"
2626

2727
# image specifies the docker image containing the operator code.
28-
image: "oracle/weblogic-kubernetes-operator:3.0.0"
28+
image: "oracle/weblogic-kubernetes-operator:3.0.1"
2929

3030
# imagePullPolicy specifies the image pull policy for the operator docker image.
3131
imagePullPolicy: "IfNotPresent"

kubernetes/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<parent>
1010
<groupId>oracle.kubernetes</groupId>
1111
<artifactId>operator-parent</artifactId>
12-
<version>3.0.0</version>
12+
<version>3.0.1</version>
1313
</parent>
1414

1515
<artifactId>installation-tests</artifactId>

new-integration-tests/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>oracle.kubernetes</groupId>
99
<artifactId>operator-parent</artifactId>
10-
<version>3.0.0</version>
10+
<version>3.0.1</version>
1111
</parent>
1212

1313
<artifactId>new-integration-tests</artifactId>

operator/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>oracle.kubernetes</groupId>
99
<artifactId>operator-parent</artifactId>
10-
<version>3.0.0</version>
10+
<version>3.0.1</version>
1111
</parent>
1212

1313
<artifactId>weblogic-kubernetes-operator</artifactId>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
<groupId>oracle.kubernetes</groupId>
99
<artifactId>operator-parent</artifactId>
10-
<version>3.0.0</version>
10+
<version>3.0.1</version>
1111

1212
<modules>
1313
<module>operator</module>

swagger/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>oracle.kubernetes</groupId>
99
<artifactId>operator-parent</artifactId>
10-
<version>3.0.0</version>
10+
<version>3.0.1</version>
1111
</parent>
1212

1313
<artifactId>operator-swagger</artifactId>

0 commit comments

Comments
 (0)