From 7113ce3ea4462bc451cc9161f496b17afe021455 Mon Sep 17 00:00:00 2001
From: Gyula Fora
Date: Mon, 4 May 2026 10:05:19 +0200
Subject: [PATCH 1/2] Flink Kubernetes Operator 1.15.0
---
docs/config.toml | 4 +-
...5-26-release-kubernetes-operator-1.15.0.md | 102 ++++++++++++++++++
docs/data/flink_kubernetes_operator.yml | 14 +--
docs/data/release_archive.yml | 5 +-
4 files changed, 115 insertions(+), 10 deletions(-)
create mode 100644 docs/content/posts/2026-05-26-release-kubernetes-operator-1.15.0.md
diff --git a/docs/config.toml b/docs/config.toml
index fac7847a1a..93f327daf5 100644
--- a/docs/config.toml
+++ b/docs/config.toml
@@ -54,8 +54,8 @@ posts = "/:year/:month/:day/:title/"
FlinkCDCStableShortVersion = "3.6"
FlinkAgentsStableVersion = "0.2.1"
FlinkAgentsStableShortVersion = "0.2"
- FlinkKubernetesOperatorStableVersion = "1.14.0"
- FlinkKubernetesOperatorStableShortVersion = "1.14"
+ FlinkKubernetesOperatorStableVersion = "1.15.0"
+ FlinkKubernetesOperatorStableShortVersion = "1.15"
ScalaVersion = "2.12.7"
ScalaShortVersion = "2.12"
JavaVersion = "1.8"
diff --git a/docs/content/posts/2026-05-26-release-kubernetes-operator-1.15.0.md b/docs/content/posts/2026-05-26-release-kubernetes-operator-1.15.0.md
new file mode 100644
index 0000000000..48b8a2c764
--- /dev/null
+++ b/docs/content/posts/2026-05-26-release-kubernetes-operator-1.15.0.md
@@ -0,0 +1,102 @@
+---
+title: "Apache Flink Kubernetes Operator 1.15.0 Release Announcement"
+date: "2026-05-26T08:00:00.000Z"
+authors:
+- gyfora:
+ name: "Gyula Fora"
+aliases:
+- /news/2026/05/04/release-kubernetes-operator-1.15.0.html
+---
+
+The Apache Flink community is excited to announce the release of Flink Kubernetes Operator 1.15.0!
+
+This release brings **Kubernetes-native Conditions** to `FlinkDeployment`, **Logback logging support**, bundled metric reporters, Flink 2.2 compatibility, and a number of important reliability fixes across session jobs, savepoints, and the mutating webhook.
+
+We encourage you to [download the release](https://flink.apache.org/downloads.html) and share your experience with the
+community through the Flink [mailing lists](https://flink.apache.org/community.html#mailing-lists) or
+[JIRA](https://issues.apache.org/jira/browse/flink)! We're looking forward to your feedback!
+
+## Highlights
+
+### Kubernetes Conditions in FlinkDeployment Status
+
+The operator now exposes a standard Kubernetes
+[Condition](https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle/#pod-conditions) in the `status` field of
+`FlinkDeployment` resources. The `Running` condition gives tooling a consistent, machine-readable signal of whether
+the deployment is up and running, directly usable with `kubectl wait`, GitOps controllers, and any tool that speaks
+Kubernetes conditions.
+
+For example, to wait until a deployment is running:
+
+```shell
+kubectl wait flinkdeployment/my-job --for=condition=Running --timeout=120s
+```
+
+### Logback Logging Support
+
+The operator now supports **Logback** as an alternative logging framework alongside the existing Log4j2 default.
+The active framework is selected at install time via the new `logging.framework` Helm value:
+
+```shell
+helm install flink-operator helm/flink-kubernetes-operator --set logging.framework=logback
+```
+
+Both `logback-operator.xml` and `logback-console.xml` configuration files are bundled in the Helm chart and can be
+customized the same way as the existing Log4j2 properties files. This is particularly useful for organizations that
+standardize on Logback or rely on Logback-specific appenders and integrations.
+
+### Bundled Metric Reporters and Expanded Metrics Documentation
+
+The operator Helm chart now bundles the `flink-metrics-dropwizard` reporter out of the box, removing the need for users to add the JAR manually when integrating with monitoring stacks that consume Dropwizard metrics.
+
+The operator metrics documentation has also been substantially reworked: it now explains how operator-scoped metric identifiers are built, documents the `kubernetes.operator.metrics.*` prefix for operator-scoped reporter configuration, and walks through an end-to-end Prometheus monitoring setup. Most importantly, every metric the operator exposes is now documented in one place, with dedicated sections covering `FlinkDeployment` / `FlinkSessionJob` lifecycle and `JobStatus` tracking, `FlinkBlueGreenDeployment`, `FlinkStateSnapshot`, and autoscaler metrics, each with a clear explanation of what the metric measures and when it's emitted, so users finally have a complete picture of what's available out of the box.
+
+### Flink 2.2 Compatibility
+
+Operator 1.15.0 is fully validated against Apache Flink 2.2. The supported Flink version matrix is:
+
+**2.2.x, 2.1.x, 2.0.x, 1.20.x, 1.19.x**
+
+## Notable Bug Fixes
+
+### Savepoint and State Management
+
+- Fixed a race condition where a savepoint or last-state upgrade could lose job state when the JobManager was slow to
+ start.
+- Fixed an issue where savepoint history entries were removed from the status before the savepoint file was
+ successfully disposed, which could leave orphaned savepoint files on the filesystem.
+- Terminal (FINISHED / FAILED) jobs are no longer erroneously restarted by the cluster/job health check, eliminating
+ unexpected job restarts after intentional completion.
+
+### Session Job Reliability
+
+- Added a new configuration option to cancel a running session job when the `FlinkSessionJob` resource is deleted,
+ rather than blocking on the finalizer indefinitely.
+- Improved the session job deletion flow so that cleanup proceeds correctly even when the session cluster is
+ temporarily unreachable.
+- Fixed a bug where `FlinkSessionJob` deletion could get stuck behind a finalizer that was never cleared.
+- Fixed missing `ownerReferences` on JobManager Deployments recreated during session cluster recovery, ensuring
+ proper garbage collection.
+
+## Release Notes
+
+The release notes can be found [here](https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12315522&version=12356676).
+
+## Release Resources
+
+The source artifacts and helm chart are available on the Downloads page of the Flink website. You can easily try out the new features shipped in the official 1.15.0 release by adding the Helm chart to your own local registry:
+
+```
+$ helm repo add flink-kubernetes-operator-1.15.0 https://archive.apache.org/dist/flink/flink-kubernetes-operator-1.15.0/
+$ helm install flink-kubernetes-operator flink-kubernetes-operator-1.15.0/flink-kubernetes-operator --set webhook.create=false
+```
+
+You can also find official Kubernetes Operator Docker images of the new version on [Dockerhub](https://hub.docker.com/r/apache/flink-kubernetes-operator).
+
+For more details, check the [updated documentation](https://nightlies.apache.org/flink/flink-kubernetes-operator-docs-release-1.15/) and the release notes. We encourage you to download the release and share your feedback with the community through the Flink mailing lists or JIRA.
+
+## List of Contributors
+
+The Apache Flink community would like to thank all contributors who made this release possible:
+
+Andrea Cosentino, David Radley, Dennis-Mircea Ciupitu, Ferenc Csaky, Gabor Somogyi, GuoYu, Gyula Fora, Harshit Gupta, jennifer-xiong25, Krzysztof Adrian Palka, Michał Kozal, Prashant Khanal, Purushottam Sinha, Sergio Chong, wangxinglong, wangxinglong02
diff --git a/docs/data/flink_kubernetes_operator.yml b/docs/data/flink_kubernetes_operator.yml
index 1e3bb0e55e..e36a94f88e 100644
--- a/docs/data/flink_kubernetes_operator.yml
+++ b/docs/data/flink_kubernetes_operator.yml
@@ -15,16 +15,16 @@
# specific language governing permissions and limitations
# under the License
+1.15:
+ name: "Apache Flink Kubernetes Operator 1.15.0"
+ source_release_url: "https://www.apache.org/dyn/closer.lua/flink/flink-kubernetes-operator-1.15.0/flink-kubernetes-operator-1.15.0-src.tgz"
+ source_release_asc_url: "https://downloads.apache.org/flink/flink-kubernetes-operator-1.15.0/flink-kubernetes-operator-1.15.0-src.tgz.asc"
+ source_release_sha512_url: "https://downloads.apache.org/flink/flink-kubernetes-operator-1.15.0/flink-kubernetes-operator-1.15.0-src.tgz.sha512"
+ compatibility: ["2.2.x", "2.1.x", "2.0.x", "1.20.x", "1.19.x"]
+
1.14:
name: "Apache Flink Kubernetes Operator 1.14.0"
source_release_url: "https://www.apache.org/dyn/closer.lua/flink/flink-kubernetes-operator-1.14.0/flink-kubernetes-operator-1.14.0-src.tgz"
source_release_asc_url: "https://downloads.apache.org/flink/flink-kubernetes-operator-1.14.0/flink-kubernetes-operator-1.14.0-src.tgz.asc"
source_release_sha512_url: "https://downloads.apache.org/flink/flink-kubernetes-operator-1.14.0/flink-kubernetes-operator-1.14.0-src.tgz.sha512"
compatibility: ["2.1.x", "2.0.x", "1.20.x", "1.19.x"]
-
-1.13:
- name: "Apache Flink Kubernetes Operator 1.13.0"
- source_release_url: "https://www.apache.org/dyn/closer.lua/flink/flink-kubernetes-operator-1.13.0/flink-kubernetes-operator-1.13.0-src.tgz"
- source_release_asc_url: "https://downloads.apache.org/flink/flink-kubernetes-operator-1.13.0/flink-kubernetes-operator-1.13.0-src.tgz.asc"
- source_release_sha512_url: "https://downloads.apache.org/flink/flink-kubernetes-operator-1.13.0/flink-kubernetes-operator-1.13.0-src.tgz.sha512"
- compatibility: ["2.1.x", "2.0.x", "1.20.x", "1.19.x", "1.18.x", "1.17.x"]
diff --git a/docs/data/release_archive.yml b/docs/data/release_archive.yml
index d47f00d992..6e4ad5b809 100644
--- a/docs/data/release_archive.yml
+++ b/docs/data/release_archive.yml
@@ -895,9 +895,12 @@ release_archive:
release_date: 2021-01-07
flink_kubernetes_operator:
+ - version_short: 1.15
+ version_long: 1.15.0
+ release_date: 2026-05-26
- version_short: 1.14
version_long: 1.14.0
- release_date: 2026-02-13
+ release_date: 2026-02-13
- version_short: 1.13
version_long: 1.13.0
release_date: 2025-09-29
From 4d3fcf0f29c604453b5b666e7f0cd9a3d4fe3cdb Mon Sep 17 00:00:00 2001
From: Gyula Fora
Date: Tue, 26 May 2026 10:04:02 +0200
Subject: [PATCH 2/2] Rebuild website
---
.../26/apache-flink-0.6-available/index.html | 4 +-
.../apache-flink-0.6.1-available/index.html | 4 +-
content/2014/10/03/upcoming-events/index.html | 4 +-
.../apache-flink-0.7.0-available/index.html | 4 +-
.../hadoop-compatibility-in-flink/index.html | 4 +-
.../index.html | 4 +-
.../apache-flink-0.8.0-available/index.html | 4 +-
.../index.html | 4 +-
.../09/introducing-flink-streaming/index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../juggling-with-bits-and-bytes/index.html | 4 +-
.../index.html | 4 +-
.../announcing-apache-flink-0.9.0/index.html | 4 +-
.../index.html | 4 +-
.../apache-flink-0.9.1-available/index.html | 4 +-
.../announcing-flink-forward-2015/index.html | 4 +-
.../index.html | 4 +-
.../announcing-apache-flink-0.10.0/index.html | 4 +-
.../11/27/flink-0.10.1-released/index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../02/11/flink-0.10.2-released/index.html | 4 +-
.../announcing-apache-flink-1.0.0/index.html | 4 +-
.../04/06/flink-1.0.1-released/index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../04/22/flink-1.0.2-released/index.html | 4 +-
.../05/11/flink-1.0.3-released/index.html | 4 +-
.../index.html | 4 +-
.../announcing-apache-flink-1.1.0/index.html | 4 +-
.../08/04/flink-1.1.1-released/index.html | 4 +-
.../index.html | 4 +-
.../05/apache-flink-1.1.2-released/index.html | 4 +-
.../12/apache-flink-1.1.3-released/index.html | 4 +-
.../index.html | 4 +-
.../21/apache-flink-1.1.4-released/index.html | 4 +-
.../announcing-apache-flink-1.2.0/index.html | 4 +-
.../23/apache-flink-1.1.5-released/index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../26/apache-flink-1.2.1-released/index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../23/apache-flink-1.3.1-released/index.html | 4 +-
.../index.html | 4 +-
.../05/apache-flink-1.3.2-released/index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../15/apache-flink-1.4.1-released/index.html | 4 +-
.../index.html | 4 +-
.../08/apache-flink-1.4.2-released/index.html | 4 +-
.../15/apache-flink-1.3.3-released/index.html | 4 +-
.../index.html | 4 +-
.../12/apache-flink-1.5.1-released/index.html | 4 +-
.../31/apache-flink-1.5.2-released/index.html | 4 +-
.../index.html | 4 +-
.../21/apache-flink-1.5.3-released/index.html | 4 +-
.../20/apache-flink-1.5.4-released/index.html | 4 +-
.../20/apache-flink-1.6.1-released/index.html | 4 +-
.../29/apache-flink-1.5.5-released/index.html | 4 +-
.../29/apache-flink-1.6.2-released/index.html | 4 +-
.../index.html | 4 +-
.../21/apache-flink-1.7.1-released/index.html | 4 +-
.../22/apache-flink-1.6.3-released/index.html | 4 +-
.../26/apache-flink-1.5.6-released/index.html | 4 +-
.../index.html | 4 +-
.../15/apache-flink-1.7.2-released/index.html | 4 +-
.../index.html | 4 +-
.../25/apache-flink-1.6.4-released/index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../02/apache-flink-1.8.1-released/index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../11/apache-flink-1.8.2-released/index.html | 4 +-
.../index.html | 4 +-
.../18/apache-flink-1.9.1-released/index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../11/apache-flink-1.8.3-released/index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../30/apache-flink-1.9.2-released/index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../flink-community-update-april20/index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../24/apache-flink-1.9.3-released/index.html | 4 +-
.../index.html | 4 +-
.../flink-community-update-may20/index.html | 4 +-
.../apache-flink-1.10.1-released/index.html | 4 +-
.../index.html | 4 +-
.../flink-community-update-june20/index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../apache-flink-1.11.1-released/index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../flink-community-update-july20/index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../the-state-of-flink-on-docker/index.html | 4 +-
.../apache-flink-1.10.2-released/index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../apache-flink-1.11.2-released/index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../apache-flink-1.11.3-released/index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../apache-flink-1.12.1-released/index.html | 4 +-
.../apache-flink-1.10.3-released/index.html | 4 +-
.../index.html | 4 +-
.../apache-flink-1.12.2-released/index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../apache-flink-1.12.3-released/index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../apache-flink-1.12.4-released/index.html | 4 +-
.../apache-flink-1.13.1-released/index.html | 4 +-
.../index.html | 4 +-
.../apache-flink-1.12.5-released/index.html | 4 +-
.../apache-flink-1.13.2-released/index.html | 4 +-
.../apache-flink-1.11.4-released/index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../apache-flink-1.13.3-released/index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../20/pravega-flink-connector-101/index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../22/scala-free-in-one-fifteen/index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../index.html | 773 +++
content/404.html | 2 +-
content/categories/index.html | 4 +-
.../flink-agents-master/index.html | 4 +-
.../flink-agents-stable/index.html | 4 +-
.../documentation/flink-cdc-master/index.html | 4 +-
.../documentation/flink-cdc-stable/index.html | 4 +-
.../index.html | 4 +-
.../index.html | 8 +-
content/documentation/flink-lts/index.html | 4 +-
content/documentation/flink-master/index.html | 4 +-
content/documentation/flink-stable/index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../documentation/flinkml-master/index.html | 4 +-
.../documentation/flinkml-stable/index.html | 4 +-
content/documentation/index.html | 4 +-
content/downloads/index.html | 36 +-
...599e5b129f8efccb66baa9aad5a5893964671d5.js | 6113 +++++++++++++++++
...2cd00a78fe4b062452509dde6afb3eb751aa6bf.js | 1 +
content/en/sitemap.xml | 11 +-
content/flink-packages/index.html | 4 +-
content/getting-started/index.html | 4 +-
.../training-course/index.html | 4 +-
.../with-flink-agents/index.html | 4 +-
.../getting-started/with-flink-cdc/index.html | 4 +-
.../with-flink-kubernetes-operator/index.html | 4 +-
.../getting-started/with-flink-ml/index.html | 4 +-
.../with-flink-stateful-functions/index.html | 4 +-
content/getting-started/with-flink/index.html | 4 +-
.../code-style-and-quality-common/index.html | 32 +-
.../index.html | 32 +-
.../index.html | 32 +-
.../code-style-and-quality-java/index.html | 32 +-
.../index.html | 32 +-
.../index.html | 32 +-
.../code-style-and-quality-scala/index.html | 32 +-
.../contribute-code/index.html | 4 +-
.../contribute-documentation/index.html | 4 +-
.../documentation-style-guide/index.html | 4 +-
.../how-to-contribute/getting-help/index.html | 4 +-
.../improve-website/index.html | 4 +-
content/how-to-contribute/index.html | 4 +-
content/how-to-contribute/overview/index.html | 4 +-
.../reviewing-prs/index.html | 4 +-
content/index.html | 36 +-
content/index.xml | 9 +-
content/material/index.html | 4 +-
.../release-kubernetes-operator-1.15.0.html | 10 +
content/posts/index.html | 58 +-
content/posts/index.xml | 9 +-
content/posts/page/10/index.html | 66 +-
content/posts/page/11/index.html | 66 +-
content/posts/page/12/index.html | 62 +-
content/posts/page/13/index.html | 59 +-
content/posts/page/14/index.html | 59 +-
content/posts/page/15/index.html | 58 +-
content/posts/page/16/index.html | 56 +-
content/posts/page/17/index.html | 59 +-
content/posts/page/18/index.html | 61 +-
content/posts/page/19/index.html | 64 +-
content/posts/page/2/index.html | 58 +-
content/posts/page/20/index.html | 61 +-
content/posts/page/21/index.html | 56 +-
content/posts/page/22/index.html | 56 +-
content/posts/page/23/index.html | 56 +-
content/posts/page/24/index.html | 53 +-
content/posts/page/25/index.html | 50 +-
content/posts/page/26/index.html | 51 +-
content/posts/page/27/index.html | 50 +-
content/posts/page/28/index.html | 28 +-
content/posts/page/3/index.html | 58 +-
content/posts/page/4/index.html | 63 +-
content/posts/page/5/index.html | 66 +-
content/posts/page/6/index.html | 61 +-
content/posts/page/7/index.html | 63 +-
content/posts/page/8/index.html | 68 +-
content/posts/page/9/index.html | 65 +-
content/sitemap.xml | 2 +-
content/tags/index.html | 4 +-
content/what-is-flink-ml/index.html | 4 +-
content/what-is-flink-table-store/index.html | 4 +-
content/what-is-flink/community/index.html | 4 +-
.../flink-applications/index.html | 4 +-
.../flink-architecture/index.html | 4 +-
.../what-is-flink/flink-operations/index.html | 4 +-
content/what-is-flink/index.html | 4 +-
content/what-is-flink/powered-by/index.html | 4 +-
content/what-is-flink/roadmap/index.html | 4 +-
content/what-is-flink/security/index.html | 4 +-
.../what-is-flink/special-thanks/index.html | 4 +-
content/what-is-flink/use-cases/index.html | 4 +-
content/what-is-stateful-functions/index.html | 4 +-
.../index.html | 4 +-
...01633d15e08a079a4e780e3732b5b67ab2d688b.js | 625 ++
...780ab95a607e058ea4ad267610a6a5357627d2c.js | 1 +
content/zh/404.html | 2 +-
content/zh/categories/index.html | 4 +-
.../flink-agents-master/index.html | 4 +-
.../flink-agents-stable/index.html | 4 +-
.../documentation/flink-cdc-master/index.html | 4 +-
.../documentation/flink-cdc-stable/index.html | 4 +-
.../index.html | 4 +-
.../index.html | 8 +-
content/zh/documentation/flink-lts/index.html | 4 +-
.../zh/documentation/flink-master/index.html | 4 +-
.../zh/documentation/flink-stable/index.html | 4 +-
.../index.html | 4 +-
.../index.html | 4 +-
.../documentation/flinkml-master/index.html | 4 +-
.../documentation/flinkml-stable/index.html | 4 +-
content/zh/documentation/index.html | 4 +-
content/zh/downloads/index.html | 36 +-
content/zh/flink-packages/index.html | 4 +-
content/zh/getting-started/index.html | 4 +-
.../training-course/index.html | 4 +-
.../with-flink-agents/index.html | 4 +-
.../getting-started/with-flink-cdc/index.html | 4 +-
.../with-flink-kubernetes-operator/index.html | 4 +-
.../getting-started/with-flink-ml/index.html | 4 +-
.../with-flink-stateful-functions/index.html | 4 +-
.../zh/getting-started/with-flink/index.html | 4 +-
.../code-style-and-quality-common/index.html | 32 +-
.../index.html | 32 +-
.../index.html | 32 +-
.../code-style-and-quality-java/index.html | 32 +-
.../index.html | 32 +-
.../index.html | 32 +-
.../code-style-and-quality-scala/index.html | 4 +-
.../contribute-code/index.html | 4 +-
.../contribute-documentation/index.html | 4 +-
.../documentation-style-guide/index.html | 4 +-
.../how-to-contribute/getting-help/index.html | 4 +-
.../improve-website/index.html | 4 +-
content/zh/how-to-contribute/index.html | 4 +-
.../zh/how-to-contribute/overview/index.html | 4 +-
.../reviewing-prs/index.html | 4 +-
content/zh/index.html | 36 +-
content/zh/material/index.html | 4 +-
content/zh/tags/index.html | 4 +-
content/zh/what-is-flink-ml/index.html | 4 +-
.../zh/what-is-flink-table-store/index.html | 4 +-
content/zh/what-is-flink/community/index.html | 4 +-
.../flink-applications/index.html | 4 +-
.../flink-architecture/index.html | 4 +-
.../what-is-flink/flink-operations/index.html | 4 +-
content/zh/what-is-flink/index.html | 4 +-
.../zh/what-is-flink/powered-by/index.html | 4 +-
content/zh/what-is-flink/roadmap/index.html | 4 +-
content/zh/what-is-flink/security/index.html | 4 +-
.../what-is-flink/special-thanks/index.html | 4 +-
content/zh/what-is-flink/use-cases/index.html | 4 +-
.../zh/what-is-stateful-functions/index.html | 4 +-
.../index.html | 4 +-
428 files changed, 9457 insertions(+), 1784 deletions(-)
create mode 100644 content/2026/05/26/apache-flink-kubernetes-operator-1.15.0-release-announcement/index.html
create mode 100644 content/en.search-data.min.074481c7289f82d4357a3b752599e5b129f8efccb66baa9aad5a5893964671d5.js
create mode 100644 content/en.search.min.dba0695f5822dda8f592cc8552cd00a78fe4b062452509dde6afb3eb751aa6bf.js
create mode 100644 content/news/2026/05/04/release-kubernetes-operator-1.15.0.html
create mode 100644 content/zh.search-data.min.bf977e5b2380367eedc49cd6901633d15e08a079a4e780e3732b5b67ab2d688b.js
create mode 100644 content/zh.search.min.042b1d56570691bc63356ccc8780ab95a607e058ea4ad267610a6a5357627d2c.js
diff --git a/content/2014/08/26/apache-flink-0.6-available/index.html b/content/2014/08/26/apache-flink-0.6-available/index.html
index 92f317c5e1..20cceb5e86 100644
--- a/content/2014/08/26/apache-flink-0.6-available/index.html
+++ b/content/2014/08/26/apache-flink-0.6-available/index.html
@@ -28,7 +28,7 @@
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ May 26, 2026 -
+
+
+
+ Gyula Fora
+
+
+
+
+
The Apache Flink community is excited to announce the release of Flink Kubernetes Operator 1.15.0!
+This release brings Kubernetes-native Conditions to FlinkDeployment, Logback logging support , bundled metric reporters, Flink 2.2 compatibility, and a number of important reliability fixes across session jobs, savepoints, and the mutating webhook.
+We encourage you to download the release and share your experience with the
+community through the Flink mailing lists or
+JIRA ! We’re looking forward to your feedback!
+
+ Highlights
+ #
+
+
+ Kubernetes Conditions in FlinkDeployment Status
+ #
+
+The operator now exposes a standard Kubernetes
+Condition in the status field of
+FlinkDeployment resources. The Running condition gives tooling a consistent, machine-readable signal of whether
+the deployment is up and running, directly usable with kubectl wait, GitOps controllers, and any tool that speaks
+Kubernetes conditions.
+For example, to wait until a deployment is running:
+kubectl wait flinkdeployment/my-job --for= condition = Running --timeout= 120s
+
+ Logback Logging Support
+ #
+
+The operator now supports Logback as an alternative logging framework alongside the existing Log4j2 default.
+The active framework is selected at install time via the new logging.framework Helm value:
+helm install flink-operator helm/flink-kubernetes-operator --set logging.framework= logback
+ Both logback-operator.xml and logback-console.xml configuration files are bundled in the Helm chart and can be
+customized the same way as the existing Log4j2 properties files. This is particularly useful for organizations that
+standardize on Logback or rely on Logback-specific appenders and integrations.
+
+ Bundled Metric Reporters and Expanded Metrics Documentation
+ #
+
+The operator Helm chart now bundles the flink-metrics-dropwizard reporter out of the box, removing the need for users to add the JAR manually when integrating with monitoring stacks that consume Dropwizard metrics.
+The operator metrics documentation has also been substantially reworked: it now explains how operator-scoped metric identifiers are built, documents the kubernetes.operator.metrics.* prefix for operator-scoped reporter configuration, and walks through an end-to-end Prometheus monitoring setup. Most importantly, every metric the operator exposes is now documented in one place, with dedicated sections covering FlinkDeployment / FlinkSessionJob lifecycle and JobStatus tracking, FlinkBlueGreenDeployment, FlinkStateSnapshot, and autoscaler metrics, each with a clear explanation of what the metric measures and when it’s emitted, so users finally have a complete picture of what’s available out of the box.
+
+ Flink 2.2 Compatibility
+ #
+
+Operator 1.15.0 is fully validated against Apache Flink 2.2. The supported Flink version matrix is:
+2.2.x, 2.1.x, 2.0.x, 1.20.x, 1.19.x
+
+ Notable Bug Fixes
+ #
+
+
+ Savepoint and State Management
+ #
+
+
+Fixed a race condition where a savepoint or last-state upgrade could lose job state when the JobManager was slow to
+start.
+Fixed an issue where savepoint history entries were removed from the status before the savepoint file was
+successfully disposed, which could leave orphaned savepoint files on the filesystem.
+Terminal (FINISHED / FAILED) jobs are no longer erroneously restarted by the cluster/job health check, eliminating
+unexpected job restarts after intentional completion.
+
+
+ Session Job Reliability
+ #
+
+
+Added a new configuration option to cancel a running session job when the FlinkSessionJob resource is deleted,
+rather than blocking on the finalizer indefinitely.
+Improved the session job deletion flow so that cleanup proceeds correctly even when the session cluster is
+temporarily unreachable.
+Fixed a bug where FlinkSessionJob deletion could get stuck behind a finalizer that was never cleared.
+Fixed missing ownerReferences on JobManager Deployments recreated during session cluster recovery, ensuring
+proper garbage collection.
+
+
+ Release Notes
+ #
+
+The release notes can be found here .
+
+ Release Resources
+ #
+
+The source artifacts and helm chart are available on the Downloads page of the Flink website. You can easily try out the new features shipped in the official 1.15.0 release by adding the Helm chart to your own local registry:
+$ helm repo add flink-kubernetes-operator-1.15.0 https://archive.apache.org/dist/flink/flink-kubernetes-operator-1.15.0/
+$ helm install flink-kubernetes-operator flink-kubernetes-operator-1.15.0/flink-kubernetes-operator --set webhook.create=false
+You can also find official Kubernetes Operator Docker images of the new version on Dockerhub .
+For more details, check the updated documentation and the release notes. We encourage you to download the release and share your feedback with the community through the Flink mailing lists or JIRA.
+
+ List of Contributors
+ #
+
+The Apache Flink community would like to thank all contributors who made this release possible:
+Andrea Cosentino, David Radley, Dennis-Mircea Ciupitu, Ferenc Csaky, Gabor Somogyi, GuoYu, Gyula Fora, Harshit Gupta, jennifer-xiong25, Krzysztof Adrian Palka, Michał Kozal, Prashant Khanal, Purushottam Sinha, Sergio Chong, wangxinglong, wangxinglong02
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+On This Page
+
+
+
+
+
+
+
+
+
+
+
+
+