You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by gy...@apache.org on 2023/07/26 15:03:11 UTC

[flink-kubernetes-operator] branch main updated (f8debf06 -> a3725024)

This is an automated email from the ASF dual-hosted git repository.

gyfora pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/flink-kubernetes-operator.git


    from f8debf06 [docs] Update doc to ensure that users keep in mind how rollback feature works
     new 69a91416 [release] Update version to 1.7-SNAPSHOT
     new a3725024 [release] Update doc and CI config for release

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .asf.yaml                                    | 1 +
 .github/workflows/docs.yaml                  | 6 +++---
 Dockerfile                                   | 2 +-
 docs/config.toml                             | 8 ++++----
 examples/autoscaling/pom.xml                 | 2 +-
 examples/flink-beam-example/pom.xml          | 2 +-
 examples/flink-sql-runner-example/pom.xml    | 2 +-
 examples/kubernetes-client-examples/pom.xml  | 4 ++--
 flink-kubernetes-docs/pom.xml                | 2 +-
 flink-kubernetes-operator-api/pom.xml        | 2 +-
 flink-kubernetes-operator-autoscaler/pom.xml | 2 +-
 flink-kubernetes-operator/pom.xml            | 2 +-
 flink-kubernetes-standalone/pom.xml          | 2 +-
 flink-kubernetes-webhook/pom.xml             | 2 +-
 helm/flink-kubernetes-operator/Chart.yaml    | 4 ++--
 pom.xml                                      | 2 +-
 16 files changed, 23 insertions(+), 22 deletions(-)


[flink-kubernetes-operator] 01/02: [release] Update version to 1.7-SNAPSHOT

Posted by gy...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

gyfora pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/flink-kubernetes-operator.git

commit 69a914165310be44d1e699612fb540dfea86f7b2
Author: Gyula Fora <g_...@apple.com>
AuthorDate: Wed Jul 26 16:47:59 2023 +0200

    [release] Update version to 1.7-SNAPSHOT
---
 Dockerfile                                   | 2 +-
 docs/config.toml                             | 4 ++--
 examples/autoscaling/pom.xml                 | 2 +-
 examples/flink-beam-example/pom.xml          | 2 +-
 examples/flink-sql-runner-example/pom.xml    | 2 +-
 examples/kubernetes-client-examples/pom.xml  | 4 ++--
 flink-kubernetes-docs/pom.xml                | 2 +-
 flink-kubernetes-operator-api/pom.xml        | 2 +-
 flink-kubernetes-operator-autoscaler/pom.xml | 2 +-
 flink-kubernetes-operator/pom.xml            | 2 +-
 flink-kubernetes-standalone/pom.xml          | 2 +-
 flink-kubernetes-webhook/pom.xml             | 2 +-
 helm/flink-kubernetes-operator/Chart.yaml    | 4 ++--
 pom.xml                                      | 2 +-
 14 files changed, 17 insertions(+), 17 deletions(-)

diff --git a/Dockerfile b/Dockerfile
index 0d4a9fc8..fe6a85a3 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -37,7 +37,7 @@ RUN cd /app/tools/license; mkdir jars; cd jars; \
 FROM eclipse-temurin:11-jre-jammy
 ENV FLINK_HOME=/opt/flink
 ENV FLINK_PLUGINS_DIR=$FLINK_HOME/plugins
-ENV OPERATOR_VERSION=1.6-SNAPSHOT
+ENV OPERATOR_VERSION=1.7-SNAPSHOT
 ENV OPERATOR_JAR=flink-kubernetes-operator-$OPERATOR_VERSION-shaded.jar
 ENV AUTOSCALER_JAR=flink-kubernetes-operator-autoscaler-$OPERATOR_VERSION.jar
 ENV WEBHOOK_JAR=flink-kubernetes-webhook-$OPERATOR_VERSION-shaded.jar
diff --git a/docs/config.toml b/docs/config.toml
index e80146d0..6b06106c 100644
--- a/docs/config.toml
+++ b/docs/config.toml
@@ -34,11 +34,11 @@ pygmentsUseClasses = true
   # we change the version for the complete docs when forking of a release branch
   # etc.
   # The full version string as referenced in Maven (e.g. 1.2.1)
-  Version = "1.6-SNAPSHOT"
+  Version = "1.7-SNAPSHOT"
 
   # For stable releases, leave the bugfix version out (e.g. 1.2). For snapshot
   # release this should be the same as the regular version
-  VersionTitle = "1.6-SNAPSHOT"
+  VersionTitle = "1.7-SNAPSHOT"
 
   # The branch for this version of the Apache Flink Kubernetes Operator
   Branch = "main"
diff --git a/examples/autoscaling/pom.xml b/examples/autoscaling/pom.xml
index 8ac16a2f..f4bea0ac 100644
--- a/examples/autoscaling/pom.xml
+++ b/examples/autoscaling/pom.xml
@@ -23,7 +23,7 @@ under the License.
     <parent>
         <groupId>org.apache.flink</groupId>
         <artifactId>flink-kubernetes-operator-parent</artifactId>
-        <version>1.6-SNAPSHOT</version>
+        <version>1.7-SNAPSHOT</version>
         <relativePath>../..</relativePath>
     </parent>
 
diff --git a/examples/flink-beam-example/pom.xml b/examples/flink-beam-example/pom.xml
index 34f0e7d8..b215f2dc 100644
--- a/examples/flink-beam-example/pom.xml
+++ b/examples/flink-beam-example/pom.xml
@@ -23,7 +23,7 @@ under the License.
     <parent>
         <groupId>org.apache.flink</groupId>
         <artifactId>flink-kubernetes-operator-parent</artifactId>
-        <version>1.6-SNAPSHOT</version>
+        <version>1.7-SNAPSHOT</version>
         <relativePath>../..</relativePath>
     </parent>
 
diff --git a/examples/flink-sql-runner-example/pom.xml b/examples/flink-sql-runner-example/pom.xml
index 52bbfefe..e448505b 100644
--- a/examples/flink-sql-runner-example/pom.xml
+++ b/examples/flink-sql-runner-example/pom.xml
@@ -23,7 +23,7 @@ under the License.
     <parent>
         <groupId>org.apache.flink</groupId>
         <artifactId>flink-kubernetes-operator-parent</artifactId>
-        <version>1.6-SNAPSHOT</version>
+        <version>1.7-SNAPSHOT</version>
         <relativePath>../..</relativePath>
     </parent>
 
diff --git a/examples/kubernetes-client-examples/pom.xml b/examples/kubernetes-client-examples/pom.xml
index f6828627..d2de74ef 100644
--- a/examples/kubernetes-client-examples/pom.xml
+++ b/examples/kubernetes-client-examples/pom.xml
@@ -24,7 +24,7 @@ under the License.
     <parent>
         <groupId>org.apache.flink</groupId>
         <artifactId>flink-kubernetes-operator-parent</artifactId>
-        <version>1.6-SNAPSHOT</version>
+        <version>1.7-SNAPSHOT</version>
         <relativePath>../..</relativePath>
     </parent>
 
@@ -40,7 +40,7 @@ under the License.
         <dependency>
             <groupId>org.apache.flink</groupId>
             <artifactId>flink-kubernetes-operator</artifactId>
-            <version>1.6-SNAPSHOT</version>
+            <version>1.7-SNAPSHOT</version>
             <scope>compile</scope>
         </dependency>
     </dependencies>
diff --git a/flink-kubernetes-docs/pom.xml b/flink-kubernetes-docs/pom.xml
index 4bad2d46..09e8cb38 100644
--- a/flink-kubernetes-docs/pom.xml
+++ b/flink-kubernetes-docs/pom.xml
@@ -23,7 +23,7 @@ under the License.
     <parent>
         <groupId>org.apache.flink</groupId>
         <artifactId>flink-kubernetes-operator-parent</artifactId>
-        <version>1.6-SNAPSHOT</version>
+        <version>1.7-SNAPSHOT</version>
         <relativePath>..</relativePath>
     </parent>
 
diff --git a/flink-kubernetes-operator-api/pom.xml b/flink-kubernetes-operator-api/pom.xml
index 8ed1976d..8a8bcbd4 100644
--- a/flink-kubernetes-operator-api/pom.xml
+++ b/flink-kubernetes-operator-api/pom.xml
@@ -23,7 +23,7 @@ under the License.
     <parent>
         <groupId>org.apache.flink</groupId>
         <artifactId>flink-kubernetes-operator-parent</artifactId>
-        <version>1.6-SNAPSHOT</version>
+        <version>1.7-SNAPSHOT</version>
         <relativePath>..</relativePath>
     </parent>
 
diff --git a/flink-kubernetes-operator-autoscaler/pom.xml b/flink-kubernetes-operator-autoscaler/pom.xml
index 66307e8c..1156855b 100644
--- a/flink-kubernetes-operator-autoscaler/pom.xml
+++ b/flink-kubernetes-operator-autoscaler/pom.xml
@@ -23,7 +23,7 @@ under the License.
     <parent>
         <groupId>org.apache.flink</groupId>
         <artifactId>flink-kubernetes-operator-parent</artifactId>
-        <version>1.6-SNAPSHOT</version>
+        <version>1.7-SNAPSHOT</version>
         <relativePath>..</relativePath>
     </parent>
 
diff --git a/flink-kubernetes-operator/pom.xml b/flink-kubernetes-operator/pom.xml
index 99f74baf..c4722bfc 100644
--- a/flink-kubernetes-operator/pom.xml
+++ b/flink-kubernetes-operator/pom.xml
@@ -23,7 +23,7 @@ under the License.
     <parent>
         <groupId>org.apache.flink</groupId>
         <artifactId>flink-kubernetes-operator-parent</artifactId>
-        <version>1.6-SNAPSHOT</version>
+        <version>1.7-SNAPSHOT</version>
         <relativePath>..</relativePath>
     </parent>
 
diff --git a/flink-kubernetes-standalone/pom.xml b/flink-kubernetes-standalone/pom.xml
index 868eaf2d..ebdc41e3 100644
--- a/flink-kubernetes-standalone/pom.xml
+++ b/flink-kubernetes-standalone/pom.xml
@@ -24,7 +24,7 @@ under the License.
     <parent>
         <artifactId>flink-kubernetes-operator-parent</artifactId>
         <groupId>org.apache.flink</groupId>
-        <version>1.6-SNAPSHOT</version>
+        <version>1.7-SNAPSHOT</version>
         <relativePath>..</relativePath>
     </parent>
 
diff --git a/flink-kubernetes-webhook/pom.xml b/flink-kubernetes-webhook/pom.xml
index 70efb44a..53b6e407 100644
--- a/flink-kubernetes-webhook/pom.xml
+++ b/flink-kubernetes-webhook/pom.xml
@@ -23,7 +23,7 @@ under the License.
     <parent>
         <groupId>org.apache.flink</groupId>
         <artifactId>flink-kubernetes-operator-parent</artifactId>
-        <version>1.6-SNAPSHOT</version>
+        <version>1.7-SNAPSHOT</version>
         <relativePath>..</relativePath>
     </parent>
 
diff --git a/helm/flink-kubernetes-operator/Chart.yaml b/helm/flink-kubernetes-operator/Chart.yaml
index 316f707a..6661b4a9 100644
--- a/helm/flink-kubernetes-operator/Chart.yaml
+++ b/helm/flink-kubernetes-operator/Chart.yaml
@@ -21,6 +21,6 @@ apiVersion: v2
 name: flink-kubernetes-operator
 description: A Helm chart for the Apache Flink Kubernetes Operator
 type: application
-version: 1.6-SNAPSHOT
-appVersion: 1.6-SNAPSHOT
+version: 1.7-SNAPSHOT
+appVersion: 1.7-SNAPSHOT
 icon: https://flink.apache.org/img/logo/png/50/color_50.png
diff --git a/pom.xml b/pom.xml
index 330d1d7e..1506dfb2 100644
--- a/pom.xml
+++ b/pom.xml
@@ -29,7 +29,7 @@ under the License.
 
     <groupId>org.apache.flink</groupId>
     <artifactId>flink-kubernetes-operator-parent</artifactId>
-    <version>1.6-SNAPSHOT</version>
+    <version>1.7-SNAPSHOT</version>
 
     <name>Flink Kubernetes: </name>
     <packaging>pom</packaging>


[flink-kubernetes-operator] 02/02: [release] Update doc and CI config for release

Posted by gy...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

gyfora pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/flink-kubernetes-operator.git

commit a37250246bb96e26b88a3ab3c6484c651daf80c1
Author: Gyula Fora <g_...@apple.com>
AuthorDate: Wed Jul 26 16:58:29 2023 +0200

    [release] Update doc and CI config for release
---
 .asf.yaml                   | 1 +
 .github/workflows/docs.yaml | 6 +++---
 docs/config.toml            | 4 ++--
 3 files changed, 6 insertions(+), 5 deletions(-)

diff --git a/.asf.yaml b/.asf.yaml
index c1ce1937..f6104dcb 100644
--- a/.asf.yaml
+++ b/.asf.yaml
@@ -16,6 +16,7 @@ github:
     release-1.3: {}
     release-1.4: {}
     release-1.5: {}
+    release-1.6: {}
 
 
 notifications:
diff --git a/.github/workflows/docs.yaml b/.github/workflows/docs.yaml
index 35fd8a0e..1df300fa 100644
--- a/.github/workflows/docs.yaml
+++ b/.github/workflows/docs.yaml
@@ -28,8 +28,8 @@ jobs:
       matrix:
         branch:
           - main
-          - release-1.4
           - release-1.5
+          - release-1.6
     steps:
       - uses: actions/checkout@v3
         with:
@@ -41,8 +41,8 @@ jobs:
           echo "flink_branch=${currentBranch}"
           echo "flink_branch=${currentBranch}" >> ${GITHUB_ENV}
           if [ "${currentBranch}" = "main" ]; then
-            echo "flink_alias=release-1.6" >> ${GITHUB_ENV}
-          elif [ "${currentBranch}" = "release-1.5" ]; then
+            echo "flink_alias=release-1.7" >> ${GITHUB_ENV}
+          elif [ "${currentBranch}" = "release-1.6" ]; then
             echo "flink_alias=stable" >> ${GITHUB_ENV}
           else
             echo "flink_alias=${currentBranch}" >> ${GITHUB_ENV}
diff --git a/docs/config.toml b/docs/config.toml
index 6b06106c..92faf507 100644
--- a/docs/config.toml
+++ b/docs/config.toml
@@ -63,8 +63,8 @@ pygmentsUseClasses = true
   ]
 
   PreviousDocs = [
-    ["1.5", "https://nightlies.apache.org/flink/flink-kubernetes-operator-docs-release-1.5"],
-    ["1.4", "https://nightlies.apache.org/flink/flink-kubernetes-operator-docs-release-1.4"]
+    ["1.6", "https://nightlies.apache.org/flink/flink-kubernetes-operator-docs-release-1.6"],
+    ["1.5", "https://nightlies.apache.org/flink/flink-kubernetes-operator-docs-release-1.5"]
   ]
 
 [markup]