Skip to content

Commit 7b2b87d

Browse files
committed
Prepare for next development cycle
1 parent 2ea9922 commit 7b2b87d

File tree

22 files changed

+47
-48
lines changed

22 files changed

+47
-48
lines changed

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.0}
36+
IMAGE_NAME=${name:-ghcr.io/oracle/weblogic-kubernetes-operator:3.3.0}
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.0</version>
11+
<version>3.3.0</version>
1212
</parent>
1313

1414
<artifactId>buildtime-reports</artifactId>

documentation/3.2/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 https://github.com/oracle/weblogic-kubernetes-operator
15+
$ git clone --branch v3.2.0 https://github.com/oracle/weblogic-kubernetes-operator
1616
```

documentation/3.2/content/samples/simple/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 [Oracle WebLogic Server Kubernetes Opera
2929
Clone the [Oracle WebLogic Server 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 https://github.com/oracle/weblogic-kubernetes-operator.git
32+
$ git clone --branch v3.2.0 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.2/content/samples/simple/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 [Oracle WebLogic Server Kubernetes Opera
3030
Clone the [Oracle WebLogic Server 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 https://github.com/oracle/weblogic-kubernetes-operator.git
33+
$ git clone --branch v3.2.0 https://github.com/oracle/weblogic-kubernetes-operator.git
3434
```
3535
```shell
3636
$ cd weblogic-kubernetes-operator

documentation/3.2/content/samples/simple/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 https://github.com/oracle/weblogic-kubernetes-operator.git
26+
$ git clone --branch v3.2.0 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.2/content/samples/simple/tanzu-kubernetes-service/_index.md

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

6565
```shell
66-
$ git clone https://github.com/oracle/weblogic-kubernetes-operator.git
66+
$ git clone --branch v3.2.0 https://github.com/oracle/weblogic-kubernetes-operator.git
6767
```
6868
```shell
6969
$ cd weblogic-kubernetes-operator
7070
```
71-
```shell
72-
$ git checkout v3.1.0
73-
```
74-
7571
Grant the Helm service account the cluster-admin role.
7672

7773
```shell

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 https://github.com/oracle/weblogic-kubernetes-operator
15+
$ git clone --branch v3.2.0 https://github.com/oracle/weblogic-kubernetes-operator
1616
```

documentation/staging/content/samples/simple/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 [Oracle WebLogic Server Kubernetes Opera
2929
Clone the [Oracle WebLogic Server 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 https://github.com/oracle/weblogic-kubernetes-operator.git
32+
$ git clone --branch v3.2.0 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/staging/content/samples/simple/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 [Oracle WebLogic Server Kubernetes Opera
3030
Clone the [Oracle WebLogic Server 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 https://github.com/oracle/weblogic-kubernetes-operator.git
33+
$ git clone --branch v3.2.0 https://github.com/oracle/weblogic-kubernetes-operator.git
3434
```
3535
```shell
3636
$ cd weblogic-kubernetes-operator

documentation/staging/content/samples/simple/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 https://github.com/oracle/weblogic-kubernetes-operator.git
26+
$ git clone --branch v3.2.0 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/staging/content/samples/simple/tanzu-kubernetes-service/_index.md

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

6565
```shell
66-
$ git clone https://github.com/oracle/weblogic-kubernetes-operator.git
66+
$ git clone --branch v3.2.0 https://github.com/oracle/weblogic-kubernetes-operator.git
6767
```
6868
```shell
6969
$ cd weblogic-kubernetes-operator
7070
```
71-
```shell
72-
$ git checkout v3.1.0
73-
```
74-
7571
Grant the Helm service account the cluster-admin role.
7672

7773
```shell

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.2.0</version>
10+
<version>3.3.0</version>
1111
</parent>
1212

1313
<artifactId>integration-tests</artifactId>

json-schema-generator/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.2.0</version>
10+
<version>3.3.0</version>
1111
</parent>
1212

1313
<artifactId>json-schema</artifactId>

kubernetes/charts/weblogic-operator/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ name: weblogic-operator
66
description: Helm chart for configuring the WebLogic operator.
77

88
type: application
9-
version: 3.2.0
10-
appVersion: 3.2.0
9+
version: 3.3.0
10+
appVersion: 3.3.0

kubernetes/charts/weblogic-operator/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ domainNamespaces:
6363
enableClusterRoleBinding: false
6464

6565
# image specifies the container image containing the operator.
66-
image: "ghcr.io/oracle/weblogic-kubernetes-operator:3.2.0"
66+
image: "ghcr.io/oracle/weblogic-kubernetes-operator:3.3.0"
6767

6868
# imagePullPolicy specifies the image pull policy for the operator's container image.
6969
imagePullPolicy: IfNotPresent

kubernetes/hands-on-lab/tutorials/install.operator.ocishell.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ An operator is an application-specific controller that extends Kubernetes to cre
77
#### Clone the operator repository to a Cloud Shell instance ####
88
First, clone the operator git repository to OCI Cloud Shell.
99
```shell
10-
$ git clone https://github.com/oracle/weblogic-kubernetes-operator.git -b v2.5.0
10+
$ git clone --branch v3.2.0 https://github.com/oracle/weblogic-kubernetes-operator.git
1111
```
1212
The output should be similar to the following:
1313
```shell

kubernetes/pom.xml

Lines changed: 25 additions & 18 deletions
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.2.0</version>
12+
<version>3.3.0</version>
1313
</parent>
1414

1515
<artifactId>installation-tests</artifactId>
@@ -43,23 +43,6 @@
4343
</configuration>
4444
</plugin>
4545

46-
<plugin>
47-
<groupId>org.codehaus.mojo</groupId>
48-
<artifactId>exec-maven-plugin</artifactId>
49-
<version>${exec-maven-plugin-version}</version>
50-
<executions>
51-
<execution><!-- helm chart package-->
52-
<id>package-helm-charts</id>
53-
<phase>compile</phase>
54-
<goals>
55-
<goal>exec</goal>
56-
</goals>
57-
<configuration>
58-
<executable>${project.basedir}/package-helm-charts.sh</executable>
59-
</configuration>
60-
</execution>
61-
</executions>
62-
</plugin>
6346
<plugin>
6447
<groupId>org.apache.maven.plugins</groupId>
6548
<artifactId>maven-checkstyle-plugin</artifactId>
@@ -97,6 +80,30 @@
9780
</dependencies>
9881

9982
<profiles>
83+
<profile>
84+
<id>package-helm-charts</id>
85+
<build>
86+
<plugins>
87+
<plugin>
88+
<groupId>org.codehaus.mojo</groupId>
89+
<artifactId>exec-maven-plugin</artifactId>
90+
<version>${exec-maven-plugin-version}</version>
91+
<executions>
92+
<execution><!-- helm chart package-->
93+
<id>package-helm-charts</id>
94+
<phase>compile</phase>
95+
<goals>
96+
<goal>exec</goal>
97+
</goals>
98+
<configuration>
99+
<executable>${project.basedir}/package-helm-charts.sh</executable>
100+
</configuration>
101+
</execution>
102+
</executions>
103+
</plugin>
104+
</plugins>
105+
</build>
106+
</profile>
100107
<profile>
101108
<id>helm-installation-test</id>
102109
<build>

operator-build-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.2.0</version>
10+
<version>3.3.0</version>
1111
</parent>
1212

1313
<artifactId>operator-build-maven-plugin</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.2.0</version>
10+
<version>3.3.0</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.2.0</version>
10+
<version>3.3.0</version>
1111

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

swagger-generator/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.2.0</version>
10+
<version>3.3.0</version>
1111
</parent>
1212

1313
<artifactId>operator-swagger</artifactId>

0 commit comments

Comments
 (0)