Skip to content

Commit

Permalink
deps: bump jkube-images to 0.0.23
Browse files Browse the repository at this point in the history
Signed-off-by: Marc Nuri <marc@marcnuri.com>
  • Loading branch information
manusa committed Jan 3, 2024
1 parent 2a478d1 commit 788d372
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ Usage:
* Fix #2257: Provide guidance when the final project packaged file is not found in Quarkus projeicts
* Fix #1690: Base images based on ubi9
* Fix #2070: build goals/tasks log warning if user forgets to run package/build goal/task
* Fix #2381: Container Images based on Java 21 (Java-exec, Tomcat, Jetty, Karaf)
* Fix #2389: Helm `values.yaml` sorted alphabetically
* Fix #2390: support for all missing Chart.yaml fields
* Fix #2391: Automatically add `values.schema.json` file if detected
Expand All @@ -32,6 +33,7 @@ Usage:
* Fix #2472: Support for Helm Chart.yaml appVersion field defaulting to project version
* Fix #2474: Remove Docker-related classes providing unused functionality
* Fix #2477: Support for Spring Boot 3.2.0 (and newer) layered jar format
* Fix #2503: Container Images Jolokia agent bumped to 2.0.0

### 1.15.0 (2023-11-10)
* Fix #2138: Support for Spring Boot Native Image
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 @@ -64,7 +64,7 @@
<version.ow2.asm>9.5</version.ow2.asm>

<!-- ======================================================= -->
<version.image.jkube-images>0.0.21</version.image.jkube-images>
<version.image.jkube-images>0.0.23</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 @@ -70,7 +70,7 @@ void tearDown() {
}

@Test
@DisplayName("deploys Pod with image: quay.io/jkube/jkube-remote-dev:0.0.21")
@DisplayName("deploys Pod with image: quay.io/jkube/jkube-remote-dev:0.0.23")
void deployPodWithImage() {
// When
executorService.submit(kubernetesSshServiceForwarder);
Expand All @@ -86,7 +86,7 @@ void deployPodWithImage() {
.extracting(PodSpec::getContainers)
.asList()
.singleElement()
.hasFieldOrPropertyWithValue("image", "quay.io/jkube/jkube-remote-dev:0.0.21");
.hasFieldOrPropertyWithValue("image", "quay.io/jkube/jkube-remote-dev:0.0.23");
}
@Test
@DisplayName("deploys Pod with port definitions")
Expand Down

0 comments on commit 788d372

Please sign in to comment.