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 2022/03/29 08:53:02 UTC

[flink-kubernetes-operator] annotated tag release-0.1.0-rc2 created (now 71d92bf)

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

gyfora pushed a change to annotated tag release-0.1.0-rc2
in repository https://gitbox.apache.org/repos/asf/flink-kubernetes-operator.git.


      at 71d92bf  (tag)
 tagging 260df17c745e5346509ac3f959a660ce1c8f9f37 (commit)
      by Gyula Fora
      on Tue Mar 29 10:27:40 2022 +0200

- Log -----------------------------------------------------------------
release-0.1.0-rc2
-----BEGIN PGP SIGNATURE-----

iHUEABYKAB0WIQSRHyGPeazqjrRTeZ7uMl3ev+1GfQUCYkLC/AAKCRDuMl3ev+1G
fXbbAP9/D1qmkZzkJS4dyJ+OP4+n7MyDl8AwynW2wrE1Cii9PAD/Sv8aZ+gIcGiX
jJwycnad5dG/iYnOli9NNV/AeR1ccQM=
=0Z32
-----END PGP SIGNATURE-----
-----------------------------------------------------------------------

This annotated tag includes the following new commits:

     new 7d09dfc  Add helm packaging to create_source_release.sh script
     new 600f487  [hotfix] Exclude flink-scala dependency from flink-clients
     new 3f43f3a  [FLINK-26903] Add correct NOTICE file to flink-kubernetes-operator
     new 260df17  [release] Update version to 0.1.0

The 4 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.


[flink-kubernetes-operator] 01/04: Add helm packaging to create_source_release.sh script

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

gyfora pushed a commit to annotated tag release-0.1.0-rc2
in repository https://gitbox.apache.org/repos/asf/flink-kubernetes-operator.git

commit 7d09dfcafb2c841ddfc0155a16e0839951644ed8
Author: Gyula Fora <g_...@apple.com>
AuthorDate: Tue Mar 29 10:18:44 2022 +0200

    Add helm packaging to create_source_release.sh script
---
 tools/releasing/create_source_release.sh | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)

diff --git a/tools/releasing/create_source_release.sh b/tools/releasing/create_source_release.sh
index 7c44771..b7eff5e 100755
--- a/tools/releasing/create_source_release.sh
+++ b/tools/releasing/create_source_release.sh
@@ -77,10 +77,29 @@ rsync -a \
   --exclude ".travis.yml" \
   . flink-kubernetes-operator-${RELEASE_VERSION}
 
+# Package helm chart
+commit_hash=$(git log -1 --pretty=format:%h)
+
+# TODO: We might want to be more specific here later on what to replace
+perl -pi -e "s#^  repository: .*#  repository: ghcr.io/apache/flink-operator#" flink-kubernetes-operator-${RELEASE_VERSION}/helm/flink-operator/values.yaml
+perl -pi -e "s#^  tag: .*#  tag: ${commit_hash}#" flink-kubernetes-operator-${RELEASE_VERSION}/helm/flink-operator/values.yaml
+
+helm package --app-version ${RELEASE_VERSION} --version ${RELEASE_VERSION} --destination ${RELEASE_DIR} flink-kubernetes-operator-${RELEASE_VERSION}/helm/flink-operator
+mv ${RELEASE_DIR}/flink-operator-${RELEASE_VERSION}.tgz ${RELEASE_DIR}/flink-kubernetes-operator-${RELEASE_VERSION}-helm.tgz
+helm repo index ${RELEASE_DIR}
+
+gpg --armor --detach-sig ${RELEASE_DIR}/flink-kubernetes-operator-${RELEASE_VERSION}-helm.tgz
+gpg --armor --detach-sig ${RELEASE_DIR}/index.yaml
+
+# Package sources
 tar czf ${RELEASE_DIR}/flink-kubernetes-operator-${RELEASE_VERSION}-src.tgz flink-kubernetes-operator-${RELEASE_VERSION}
 gpg --armor --detach-sig ${RELEASE_DIR}/flink-kubernetes-operator-${RELEASE_VERSION}-src.tgz
+
+
 cd ${RELEASE_DIR}
 ${SHASUM} flink-kubernetes-operator-${RELEASE_VERSION}-src.tgz > flink-kubernetes-operator-${RELEASE_VERSION}-src.tgz.sha512
+${SHASUM} flink-kubernetes-operator-${RELEASE_VERSION}-helm.tgz > flink-kubernetes-operator-${RELEASE_VERSION}-helm.tgz.sha512
+${SHASUM} index.yaml > index.yaml.sha512
 
 rm -rf ${CLONE_DIR}
 

[flink-kubernetes-operator] 04/04: [release] Update version to 0.1.0

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

gyfora pushed a commit to annotated tag release-0.1.0-rc2
in repository https://gitbox.apache.org/repos/asf/flink-kubernetes-operator.git

commit 260df17c745e5346509ac3f959a660ce1c8f9f37
Author: Gyula Fora <g_...@apple.com>
AuthorDate: Tue Mar 29 10:27:02 2022 +0200

    [release] Update version to 0.1.0
---
 Dockerfile                        | 2 +-
 flink-kubernetes-operator/pom.xml | 2 +-
 flink-kubernetes-shaded/pom.xml   | 2 +-
 flink-kubernetes-webhook/pom.xml  | 2 +-
 helm/flink-operator/Chart.yaml    | 4 ++--
 pom.xml                           | 2 +-
 6 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/Dockerfile b/Dockerfile
index 2cd1133..82bb58c 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -40,7 +40,7 @@ RUN --mount=type=cache,target=/root/.m2 mvn -ntp clean install
 # stage
 FROM openjdk:11-jre
 ENV FLINK_HOME=/opt/flink
-ENV OPERATOR_VERSION=0.1-SNAPSHOT
+ENV OPERATOR_VERSION=0.1.0
 ENV OPERATOR_JAR=flink-kubernetes-operator-$OPERATOR_VERSION-shaded.jar
 ENV WEBHOOK_JAR=flink-kubernetes-webhook-$OPERATOR_VERSION.jar
 ENV FLINK_KUBERNETES_SHADED_JAR=flink-kubernetes-shaded-$OPERATOR_VERSION.jar
diff --git a/flink-kubernetes-operator/pom.xml b/flink-kubernetes-operator/pom.xml
index 411d283..0e7335a 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>0.1-SNAPSHOT</version>
+        <version>0.1.0</version>
         <relativePath>..</relativePath>
     </parent>
 
diff --git a/flink-kubernetes-shaded/pom.xml b/flink-kubernetes-shaded/pom.xml
index 2741fda..d73d4b6 100644
--- a/flink-kubernetes-shaded/pom.xml
+++ b/flink-kubernetes-shaded/pom.xml
@@ -23,7 +23,7 @@ under the License.
     <parent>
       <groupId>org.apache.flink</groupId>
       <artifactId>flink-kubernetes-operator-parent</artifactId>
-      <version>0.1-SNAPSHOT</version>
+      <version>0.1.0</version>
       <relativePath>..</relativePath>
     </parent>
 
diff --git a/flink-kubernetes-webhook/pom.xml b/flink-kubernetes-webhook/pom.xml
index 5081e7f..e213ebe 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>0.1-SNAPSHOT</version>
+      <version>0.1.0</version>
       <relativePath>..</relativePath>
     </parent>
 
diff --git a/helm/flink-operator/Chart.yaml b/helm/flink-operator/Chart.yaml
index 4e1d8f5..a2709cf 100644
--- a/helm/flink-operator/Chart.yaml
+++ b/helm/flink-operator/Chart.yaml
@@ -21,5 +21,5 @@ apiVersion: v2
 name: flink-operator
 description: A Helm chart for flink-operator
 type: application
-version: 0.1-SNAPSHOT
-appVersion: 0.1-SNAPSHOT
+version: 0.1.0
+appVersion: 0.1.0
diff --git a/pom.xml b/pom.xml
index 1368342..6d48051 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>0.1-SNAPSHOT</version>
+    <version>0.1.0</version>
 
     <name>Flink Kubernetes: </name>
     <packaging>pom</packaging>

[flink-kubernetes-operator] 02/04: [hotfix] Exclude flink-scala dependency from flink-clients

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

gyfora pushed a commit to annotated tag release-0.1.0-rc2
in repository https://gitbox.apache.org/repos/asf/flink-kubernetes-operator.git

commit 600f487e76ab01bccd33de2ec56a67b222d83f99
Author: wangyang0918 <da...@alibaba-inc.com>
AuthorDate: Tue Mar 29 14:09:16 2022 +0800

    [hotfix] Exclude flink-scala dependency from flink-clients
---
 flink-kubernetes-operator/pom.xml | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/flink-kubernetes-operator/pom.xml b/flink-kubernetes-operator/pom.xml
index b7b35fb..411d283 100644
--- a/flink-kubernetes-operator/pom.xml
+++ b/flink-kubernetes-operator/pom.xml
@@ -61,6 +61,12 @@ under the License.
             <groupId>org.apache.flink</groupId>
             <artifactId>flink-clients_${scala.version}</artifactId>
             <version>${flink.version}</version>
+            <exclusions>
+                <exclusion>
+                    <groupId>org.apache.flink</groupId>
+                    <artifactId>flink-scala_${scala.version}</artifactId>
+                </exclusion>
+            </exclusions>
         </dependency>
 
         <dependency>

[flink-kubernetes-operator] 03/04: [FLINK-26903] Add correct NOTICE file to flink-kubernetes-operator

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

gyfora pushed a commit to annotated tag release-0.1.0-rc2
in repository https://gitbox.apache.org/repos/asf/flink-kubernetes-operator.git

commit 3f43f3a8dec732f242380621c3ee43b9298ba4b6
Author: wangyang0918 <da...@alibaba-inc.com>
AuthorDate: Tue Mar 29 13:31:50 2022 +0800

    [FLINK-26903] Add correct NOTICE file to flink-kubernetes-operator
---
 .../src/main/resources/META-INF/NOTICE             | 113 +++++++++++++++++++++
 .../resources/META-INF/licenses/LICENSE.automaton  |  24 +++++
 .../META-INF/licenses/LICENSE.checker-qual         |  22 ++++
 .../main/resources/META-INF/licenses/LICENSE.kryo  |  10 ++
 .../resources/META-INF/licenses/LICENSE.minlog     |  10 ++
 pom.xml                                            |   4 +
 6 files changed, 183 insertions(+)

diff --git a/flink-kubernetes-operator/src/main/resources/META-INF/NOTICE b/flink-kubernetes-operator/src/main/resources/META-INF/NOTICE
new file mode 100644
index 0000000..4072483
--- /dev/null
+++ b/flink-kubernetes-operator/src/main/resources/META-INF/NOTICE
@@ -0,0 +1,113 @@
+flink-kubernetes-operator
+Copyright 2014-2021 The Apache Software Foundation
+
+This project includes software developed at
+The Apache Software Foundation (http://www.apache.org/).
+
+This project bundles the following dependencies under the Apache Software License 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt)
+
+- com.fasterxml.jackson.core:jackson-annotations:2.13.1
+- com.fasterxml.jackson.core:jackson-core:2.13.1
+- com.fasterxml.jackson.core:jackson-databind:2.13.1
+- com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.13.1
+- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.1
+- com.github.mifmif:generex:1.0.2
+- com.google.auto.service:auto-service-annotations:1.0.1
+- com.google.auto.service:auto-service:1.0.1
+- com.google.auto:auto-common:1.2
+- com.google.code.findbugs:jsr305:1.3.9
+- com.google.errorprone:error_prone_annotations:2.7.1
+- com.google.guava:failureaccess:1.0.1
+- com.google.guava:guava:31.0.1-jre
+- com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava
+- com.google.j2objc:j2objc-annotations:1.3
+- com.squareup.okhttp3:logging-interceptor:3.12.12
+- com.squareup.okhttp3:okhttp:3.12.12
+- com.squareup.okio:okio:1.15.0
+- com.squareup:javapoet:1.13.0
+- commons-cli:commons-cli:1.3.1
+- commons-collections:commons-collections:3.2.2
+- commons-io:commons-io:2.8.0
+- io.fabric8:kubernetes-client:5.12.1
+- io.fabric8:kubernetes-model-admissionregistration:5.12.1
+- io.fabric8:kubernetes-model-apiextensions:5.12.1
+- io.fabric8:kubernetes-model-apps:5.12.1
+- io.fabric8:kubernetes-model-autoscaling:5.12.1
+- io.fabric8:kubernetes-model-batch:5.12.1
+- io.fabric8:kubernetes-model-certificates:5.12.1
+- io.fabric8:kubernetes-model-common:5.12.1
+- io.fabric8:kubernetes-model-coordination:5.12.1
+- io.fabric8:kubernetes-model-core:5.12.1
+- io.fabric8:kubernetes-model-discovery:5.12.1
+- io.fabric8:kubernetes-model-events:5.12.1
+- io.fabric8:kubernetes-model-extensions:5.12.1
+- io.fabric8:kubernetes-model-flowcontrol:5.12.1
+- io.fabric8:kubernetes-model-metrics:5.12.1
+- io.fabric8:kubernetes-model-networking:5.12.1
+- io.fabric8:kubernetes-model-node:5.12.1
+- io.fabric8:kubernetes-model-policy:5.12.1
+- io.fabric8:kubernetes-model-rbac:5.12.1
+- io.fabric8:kubernetes-model-scheduling:5.12.1
+- io.fabric8:kubernetes-model-storageclass:5.12.1
+- io.fabric8:openshift-client:5.12.0
+- io.fabric8:openshift-model-clusterautoscaling:5.12.0
+- io.fabric8:openshift-model-console:5.12.0
+- io.fabric8:openshift-model-hive:5.12.0
+- io.fabric8:openshift-model-installer:5.12.0
+- io.fabric8:openshift-model-machine:5.12.0
+- io.fabric8:openshift-model-machineconfig:5.12.0
+- io.fabric8:openshift-model-miscellaneous:5.12.0
+- io.fabric8:openshift-model-monitoring:5.12.0
+- io.fabric8:openshift-model-operator:5.12.0
+- io.fabric8:openshift-model-operatorhub:5.12.0
+- io.fabric8:openshift-model-storageversionmigrator:5.12.0
+- io.fabric8:openshift-model-tuned:5.12.0
+- io.fabric8:openshift-model-whereabouts:5.12.0
+- io.fabric8:openshift-model:5.12.0
+- io.fabric8:zjsonpatch:0.3.0
+- io.javaoperatorsdk:operator-framework-core:2.1.2
+- io.javaoperatorsdk:operator-framework:2.1.2
+- org.apache.commons:commons-compress:1.21
+- org.apache.commons:commons-lang3:3.12.0
+- org.apache.commons:commons-math3:3.5
+- org.apache.flink:flink-annotations:1.14.4
+- org.apache.flink:flink-clients_2.12:1.14.4
+- org.apache.flink:flink-core:1.14.4
+- org.apache.flink:flink-file-sink-common:1.14.4
+- org.apache.flink:flink-hadoop-fs:1.14.4
+- org.apache.flink:flink-java:1.14.4
+- org.apache.flink:flink-metrics-core:1.14.4
+- org.apache.flink:flink-optimizer:1.14.4
+- org.apache.flink:flink-queryable-state-client-java:1.14.4
+- org.apache.flink:flink-rpc-akka-loader:1.14.4
+- org.apache.flink:flink-rpc-core:1.14.4
+- org.apache.flink:flink-runtime:1.14.4
+- org.apache.flink:flink-shaded-asm-7:7.1-14.0
+- org.apache.flink:flink-shaded-force-shading:14.0
+- org.apache.flink:flink-shaded-guava:30.1.1-jre-14.0
+- org.apache.flink:flink-shaded-jackson:2.12.4-14.0
+- org.apache.flink:flink-shaded-netty:4.1.65.Final-14.0
+- org.apache.flink:flink-shaded-zookeeper-3:3.4.14-14.0
+- org.apache.flink:flink-streaming-java_2.12:1.14.4
+- org.apache.logging.log4j:log4j-1.2-api:2.17.1
+- org.apache.logging.log4j:log4j-api:2.17.1
+- org.apache.logging.log4j:log4j-core:2.17.1
+- org.apache.logging.log4j:log4j-slf4j-impl:2.17.1
+- org.javassist:javassist:3.24.0-GA
+- org.lz4:lz4-java:1.8.0
+- org.objenesis:objenesis:2.1
+- org.slf4j:slf4j-api:1.7.36
+- org.xerial.snappy:snappy-java:1.1.8.3
+- org.yaml:snakeyaml:1.28
+
+This project bundles the following dependencies under the BSD License.
+See bundled license files for details.
+
+- com.esotericsoftware.kryo:kryo:2.24.0
+- com.esotericsoftware.minlog:minlog:1.2
+- dk.brics.automaton:automaton:1.11-8
+
+This project bundles the following dependencies under the MIT license.
+See bundled license files for details.
+
+- org.checkerframework:checker-qual:3.12.0
diff --git a/flink-kubernetes-operator/src/main/resources/META-INF/licenses/LICENSE.automaton b/flink-kubernetes-operator/src/main/resources/META-INF/licenses/LICENSE.automaton
new file mode 100644
index 0000000..cb5b25f
--- /dev/null
+++ b/flink-kubernetes-operator/src/main/resources/META-INF/licenses/LICENSE.automaton
@@ -0,0 +1,24 @@
+Copyright (c) 2001-2017 Anders Moeller
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions
+are met:
+1. Redistributions of source code must retain the above copyright
+   notice, this list of conditions and the following disclaimer.
+2. Redistributions in binary form must reproduce the above copyright
+   notice, this list of conditions and the following disclaimer in the
+   documentation and/or other materials provided with the distribution.
+3. The name of the author may not be used to endorse or promote products
+   derived from this software without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
+IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
+OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
+IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
+INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
+NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
+THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
diff --git a/flink-kubernetes-operator/src/main/resources/META-INF/licenses/LICENSE.checker-qual b/flink-kubernetes-operator/src/main/resources/META-INF/licenses/LICENSE.checker-qual
new file mode 100644
index 0000000..9837c6b
--- /dev/null
+++ b/flink-kubernetes-operator/src/main/resources/META-INF/licenses/LICENSE.checker-qual
@@ -0,0 +1,22 @@
+Checker Framework qualifiers
+Copyright 2004-present by the Checker Framework developers
+
+MIT License:
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
diff --git a/flink-kubernetes-operator/src/main/resources/META-INF/licenses/LICENSE.kryo b/flink-kubernetes-operator/src/main/resources/META-INF/licenses/LICENSE.kryo
new file mode 100644
index 0000000..e1cd884
--- /dev/null
+++ b/flink-kubernetes-operator/src/main/resources/META-INF/licenses/LICENSE.kryo
@@ -0,0 +1,10 @@
+Copyright (c) 2008, Nathan Sweet
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
+
+    * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
+    * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
+    * Neither the name of Esoteric Software nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROF [...]
diff --git a/flink-kubernetes-operator/src/main/resources/META-INF/licenses/LICENSE.minlog b/flink-kubernetes-operator/src/main/resources/META-INF/licenses/LICENSE.minlog
new file mode 100644
index 0000000..e1cd884
--- /dev/null
+++ b/flink-kubernetes-operator/src/main/resources/META-INF/licenses/LICENSE.minlog
@@ -0,0 +1,10 @@
+Copyright (c) 2008, Nathan Sweet
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
+
+    * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
+    * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
+    * Neither the name of Esoteric Software nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROF [...]
diff --git a/pom.xml b/pom.xml
index 8e2adce..1368342 100644
--- a/pom.xml
+++ b/pom.xml
@@ -274,6 +274,10 @@ under the License.
                             <!-- Generated CRD -->
                             <exclude>helm/flink-operator/crds/flinkdeployments.flink.apache.org-v1.yml</exclude>
                             <exclude>rio.yml</exclude>
+                            <!-- the licenses that are re-bundled -->
+                            <exclude>**/packaged_licenses/LICENSE.*.txt</exclude>
+                            <exclude>**/licenses/LICENSE*</exclude>
+                            <exclude>**/licenses-binary/LICENSE*</exclude>
                         </excludes>
                     </configuration>
                 </plugin>