From 23452ec97efe3dbe95af0073c4448bde575bbeac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Attila=20M=C3=A9sz=C3=A1ros?= Date: Fri, 27 Mar 2026 16:26:56 +0100 Subject: [PATCH 1/3] fix: snapshot release fails MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit on first look it seems because of missing relative path Signed-off-by: Attila Mészáros --- bootstrapper-maven-plugin/pom.xml | 1 + docs/content/en/docs/documentation/observability.md | 2 +- micrometer-support/pom.xml | 1 + migration/pom.xml | 1 + sample-operators/pom.xml | 1 + test-index-processor/pom.xml | 1 + 6 files changed, 6 insertions(+), 1 deletion(-) diff --git a/bootstrapper-maven-plugin/pom.xml b/bootstrapper-maven-plugin/pom.xml index 957681e199..6b7d9ecb82 100644 --- a/bootstrapper-maven-plugin/pom.xml +++ b/bootstrapper-maven-plugin/pom.xml @@ -23,6 +23,7 @@ io.javaoperatorsdk java-operator-sdk 5.3.1-SNAPSHOT + ../pom.xml bootstrapper diff --git a/docs/content/en/docs/documentation/observability.md b/docs/content/en/docs/documentation/observability.md index ac9ba9c9e8..dbe5efb082 100644 --- a/docs/content/en/docs/documentation/observability.md +++ b/docs/content/en/docs/documentation/observability.md @@ -123,7 +123,7 @@ All meters use `controller.name` as their primary tag. Counters optionally carry | `reconciliations.success.total` | counter | `controller.name`, `namespace`* | Number of successfully finished reconciliations | | `reconciliations.failure.total` | counter | `controller.name`, `namespace`* | Number of failed reconciliations | | `reconciliations.retries.total` | counter | `controller.name`, `namespace`* | Number of reconciliation retries | -| `events.received` | counter | `controller.name`, `event`, `action`, `namespace` | Number of Kubernetes events received by the controller | +| `events.received` | counter | `controller.name`, `event`, `action`, `namespace`* | Number of events received by the controller | \* `namespace` tag is only included when `withNamespaceAsTag()` is enabled. diff --git a/micrometer-support/pom.xml b/micrometer-support/pom.xml index d2ad4e0bc0..f5021774d8 100644 --- a/micrometer-support/pom.xml +++ b/micrometer-support/pom.xml @@ -22,6 +22,7 @@ io.javaoperatorsdk java-operator-sdk 5.3.1-SNAPSHOT + ../pom.xml micrometer-support diff --git a/migration/pom.xml b/migration/pom.xml index c99635dff4..6bde936632 100644 --- a/migration/pom.xml +++ b/migration/pom.xml @@ -22,6 +22,7 @@ io.javaoperatorsdk java-operator-sdk 5.3.1-SNAPSHOT + ../pom.xml migration diff --git a/sample-operators/pom.xml b/sample-operators/pom.xml index 7abd6048a9..7a7926920f 100644 --- a/sample-operators/pom.xml +++ b/sample-operators/pom.xml @@ -23,6 +23,7 @@ io.javaoperatorsdk java-operator-sdk 5.3.1-SNAPSHOT + ../pom.xml sample-operators diff --git a/test-index-processor/pom.xml b/test-index-processor/pom.xml index d42c7b912a..16245d3305 100644 --- a/test-index-processor/pom.xml +++ b/test-index-processor/pom.xml @@ -23,6 +23,7 @@ io.javaoperatorsdk java-operator-sdk 5.3.1-SNAPSHOT + ../pom.xml test-index-processor From bed2b8b49ebf35f8892291884b33bdf54858c13d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Attila=20M=C3=A9sz=C3=A1ros?= Date: Fri, 27 Mar 2026 16:28:45 +0100 Subject: [PATCH 2/3] wip MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Attila Mészáros --- docs/content/en/docs/documentation/observability.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/en/docs/documentation/observability.md b/docs/content/en/docs/documentation/observability.md index dbe5efb082..ac9ba9c9e8 100644 --- a/docs/content/en/docs/documentation/observability.md +++ b/docs/content/en/docs/documentation/observability.md @@ -123,7 +123,7 @@ All meters use `controller.name` as their primary tag. Counters optionally carry | `reconciliations.success.total` | counter | `controller.name`, `namespace`* | Number of successfully finished reconciliations | | `reconciliations.failure.total` | counter | `controller.name`, `namespace`* | Number of failed reconciliations | | `reconciliations.retries.total` | counter | `controller.name`, `namespace`* | Number of reconciliation retries | -| `events.received` | counter | `controller.name`, `event`, `action`, `namespace`* | Number of events received by the controller | +| `events.received` | counter | `controller.name`, `event`, `action`, `namespace` | Number of Kubernetes events received by the controller | \* `namespace` tag is only included when `withNamespaceAsTag()` is enabled. From 2c882b2336965d488fa2dc0eeea25641b99ac563 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Attila=20M=C3=A9sz=C3=A1ros?= Date: Fri, 27 Mar 2026 16:41:48 +0100 Subject: [PATCH 3/3] wip MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Attila Mészáros --- caffeine-bounded-cache-support/pom.xml | 1 + operator-framework-junit/pom.xml | 1 + operator-framework/pom.xml | 1 + sample-operators/controller-namespace-deletion/pom.xml | 1 + sample-operators/leader-election/pom.xml | 1 + sample-operators/metrics-processing/pom.xml | 1 + sample-operators/mysql-schema/pom.xml | 1 + sample-operators/tomcat-operator/pom.xml | 1 + sample-operators/webpage/pom.xml | 1 + 9 files changed, 9 insertions(+) diff --git a/caffeine-bounded-cache-support/pom.xml b/caffeine-bounded-cache-support/pom.xml index f80c44f235..f77d5b2ab8 100644 --- a/caffeine-bounded-cache-support/pom.xml +++ b/caffeine-bounded-cache-support/pom.xml @@ -22,6 +22,7 @@ io.javaoperatorsdk java-operator-sdk 5.3.1-SNAPSHOT + ../pom.xml caffeine-bounded-cache-support diff --git a/operator-framework-junit/pom.xml b/operator-framework-junit/pom.xml index 5813f9408c..6fccf6f83e 100644 --- a/operator-framework-junit/pom.xml +++ b/operator-framework-junit/pom.xml @@ -22,6 +22,7 @@ io.javaoperatorsdk java-operator-sdk 5.3.1-SNAPSHOT + ../pom.xml operator-framework-junit diff --git a/operator-framework/pom.xml b/operator-framework/pom.xml index 1588590401..6d21946475 100644 --- a/operator-framework/pom.xml +++ b/operator-framework/pom.xml @@ -22,6 +22,7 @@ io.javaoperatorsdk java-operator-sdk 5.3.1-SNAPSHOT + ../pom.xml operator-framework diff --git a/sample-operators/controller-namespace-deletion/pom.xml b/sample-operators/controller-namespace-deletion/pom.xml index c5bfaa47bc..202bfdd3ce 100644 --- a/sample-operators/controller-namespace-deletion/pom.xml +++ b/sample-operators/controller-namespace-deletion/pom.xml @@ -23,6 +23,7 @@ io.javaoperatorsdk sample-operators 5.3.1-SNAPSHOT + ../pom.xml sample-controller-namespace-deletion diff --git a/sample-operators/leader-election/pom.xml b/sample-operators/leader-election/pom.xml index ce6c1bad41..c363fb5577 100644 --- a/sample-operators/leader-election/pom.xml +++ b/sample-operators/leader-election/pom.xml @@ -23,6 +23,7 @@ io.javaoperatorsdk sample-operators 5.3.1-SNAPSHOT + ../pom.xml sample-leader-election diff --git a/sample-operators/metrics-processing/pom.xml b/sample-operators/metrics-processing/pom.xml index 33d18acbeb..75e84162a1 100644 --- a/sample-operators/metrics-processing/pom.xml +++ b/sample-operators/metrics-processing/pom.xml @@ -23,6 +23,7 @@ io.javaoperatorsdk sample-operators 5.3.1-SNAPSHOT + ../pom.xml sample-metrics-processing diff --git a/sample-operators/mysql-schema/pom.xml b/sample-operators/mysql-schema/pom.xml index c4612cf82a..ecd37160fa 100644 --- a/sample-operators/mysql-schema/pom.xml +++ b/sample-operators/mysql-schema/pom.xml @@ -23,6 +23,7 @@ io.javaoperatorsdk sample-operators 5.3.1-SNAPSHOT + ../pom.xml sample-mysql-schema-operator diff --git a/sample-operators/tomcat-operator/pom.xml b/sample-operators/tomcat-operator/pom.xml index 6d20175521..21f2550aeb 100644 --- a/sample-operators/tomcat-operator/pom.xml +++ b/sample-operators/tomcat-operator/pom.xml @@ -23,6 +23,7 @@ io.javaoperatorsdk sample-operators 5.3.1-SNAPSHOT + ../pom.xml sample-tomcat-operator diff --git a/sample-operators/webpage/pom.xml b/sample-operators/webpage/pom.xml index f700c27987..924207b06e 100644 --- a/sample-operators/webpage/pom.xml +++ b/sample-operators/webpage/pom.xml @@ -23,6 +23,7 @@ io.javaoperatorsdk sample-operators 5.3.1-SNAPSHOT + ../pom.xml sample-webpage-operator