Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/master' into ai-sonar-grdle-pl…
Browse files Browse the repository at this point in the history
…ugin-fix
  • Loading branch information
jonathanvila committed Jan 9, 2025
2 parents 33bdfd2 + 8d658ad commit 9c67d06
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ Usage:
* Fix #2667: Add new helm test goal task (`k8s:helm-test` for maven and `k8sHelmTest` for gradle)
* Fix #3326: Micronaut healthcheck enricher infers overridden server port in application.properties
* Fix #3354: Build fails with `imageStream` for `buildRecreate` value
* Fix #3623: Updated jkube-images to 0.0.25

### 1.17.0 (2024-08-13)
* Fix #494: Support for Micronaut Framework Native Images
Expand Down
2 changes: 1 addition & 1 deletion jkube-kit/parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
<version.ow2.asm>9.7.1</version.ow2.asm>

<!-- ======================================================= -->
<version.image.jkube-images>0.0.24</version.image.jkube-images>
<version.image.jkube-images>0.0.25</version.image.jkube-images>
<version.image.ubi-minimal>9.3</version.image.ubi-minimal>
<!-- === Java base image versions for docker, s2i (istag == s2i) -->
<!-- Upstream -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ void tearDown() {
}

@Test
@DisplayName("deploys Pod with image: quay.io/jkube/jkube-remote-dev:0.0.24")
@DisplayName("deploys Pod with image: quay.io/jkube/jkube-remote-dev:0.0.25")
void deployPodWithImage() {
// When
executorService.submit(kubernetesSshServiceForwarder);
Expand All @@ -89,7 +89,7 @@ void deployPodWithImage() {
.extracting(PodSpec::getContainers)
.asInstanceOf(InstanceOfAssertFactories.list(Container.class))
.singleElement()
.hasFieldOrPropertyWithValue("image", "quay.io/jkube/jkube-remote-dev:0.0.24");
.hasFieldOrPropertyWithValue("image", "quay.io/jkube/jkube-remote-dev:0.0.25");
}
@Test
@DisplayName("deploys Pod with port definitions")
Expand Down

0 comments on commit 9c67d06

Please sign in to comment.