Skip to content

Commit

Permalink
Bump Dekorate to 3.5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Sgitario committed Mar 28, 2023
1 parent d9e2da4 commit 68642ed
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 68642ed

Please sign in to comment.