Skip to content

Commit 23452ec

Browse files
committed
fix: snapshot release fails
on first look it seems because of missing relative path Signed-off-by: Attila Mészáros <a_meszaros@apple.com>
1 parent c0eb78f commit 23452ec

File tree

6 files changed

+6
-1
lines changed

6 files changed

+6
-1
lines changed

bootstrapper-maven-plugin/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
<groupId>io.javaoperatorsdk</groupId>
2424
<artifactId>java-operator-sdk</artifactId>
2525
<version>5.3.1-SNAPSHOT</version>
26+
<relativePath>../pom.xml</relativePath>
2627
</parent>
2728

2829
<artifactId>bootstrapper</artifactId>

docs/content/en/docs/documentation/observability.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ All meters use `controller.name` as their primary tag. Counters optionally carry
123123
| `reconciliations.success.total` | counter | `controller.name`, `namespace`* | Number of successfully finished reconciliations |
124124
| `reconciliations.failure.total` | counter | `controller.name`, `namespace`* | Number of failed reconciliations |
125125
| `reconciliations.retries.total` | counter | `controller.name`, `namespace`* | Number of reconciliation retries |
126-
| `events.received` | counter | `controller.name`, `event`, `action`, `namespace` | Number of Kubernetes events received by the controller |
126+
| `events.received` | counter | `controller.name`, `event`, `action`, `namespace`* | Number of events received by the controller |
127127

128128
\* `namespace` tag is only included when `withNamespaceAsTag()` is enabled.
129129

micrometer-support/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
<groupId>io.javaoperatorsdk</groupId>
2323
<artifactId>java-operator-sdk</artifactId>
2424
<version>5.3.1-SNAPSHOT</version>
25+
<relativePath>../pom.xml</relativePath>
2526
</parent>
2627

2728
<artifactId>micrometer-support</artifactId>

migration/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
<groupId>io.javaoperatorsdk</groupId>
2323
<artifactId>java-operator-sdk</artifactId>
2424
<version>5.3.1-SNAPSHOT</version>
25+
<relativePath>../pom.xml</relativePath>
2526
</parent>
2627

2728
<artifactId>migration</artifactId>

sample-operators/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
<groupId>io.javaoperatorsdk</groupId>
2424
<artifactId>java-operator-sdk</artifactId>
2525
<version>5.3.1-SNAPSHOT</version>
26+
<relativePath>../pom.xml</relativePath>
2627
</parent>
2728

2829
<artifactId>sample-operators</artifactId>

test-index-processor/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
<groupId>io.javaoperatorsdk</groupId>
2424
<artifactId>java-operator-sdk</artifactId>
2525
<version>5.3.1-SNAPSHOT</version>
26+
<relativePath>../pom.xml</relativePath>
2627
</parent>
2728

2829
<artifactId>test-index-processor</artifactId>

0 commit comments

Comments
 (0)