Skip to content

Commit

Permalink
Merge pull request #32172 from Sgitario/test-dekorate
Browse files Browse the repository at this point in the history
Bump Dekorate to 3.5.3
  • Loading branch information
gsmet committed Mar 28, 2023
2 parents 6b6f562 + 68642ed commit 412f422
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bom/application/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@
<kotlin.version>1.8.10</kotlin.version>
<kotlin.coroutine.version>1.6.4</kotlin.coroutine.version>
<kotlin-serialization.version>1.5.0</kotlin-serialization.version>
<dekorate.version>3.5.2</dekorate.version> <!-- Please check with Java Operator SDK team before updating -->
<dekorate.version>3.5.3</dekorate.version> <!-- Please check with Java Operator SDK team before updating -->
<maven-invoker.version>3.2.0</maven-invoker.version>
<awaitility.version>4.2.0</awaitility.version>
<jboss-logmanager.version>1.1.1</jboss-logmanager.version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,10 @@ private ConfigReference buildConfigReferenceForImage() {
path = "spec.template.spec.containers.(name == " + getContainerName() + ").image";
}

return new ConfigReference(property, path, image);
return new ConfigReference.Builder(property, path)
.withValue(image)
.withDescription("The container image to use.")
.build();
}

}

0 comments on commit 412f422

Please sign in to comment.