Skip to content

Commit

Permalink
deps: bump JKube base images to 0.0.21
Browse files Browse the repository at this point in the history
Base images are now based on ubi9

Signed-off-by: Marc Nuri <marc@marcnuri.com>
  • Loading branch information
manusa committed Nov 15, 2023
1 parent c2377d2 commit 33bab59
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 @@ -21,6 +21,7 @@ Usage:
./scripts/extract-changelog-for-version.sh 1.3.37 5
```
### 1.16-SNAPSHOT
* Fix #1690: Base images based on ubi9

### 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.20</version.image.jkube-images>
<version.image.jkube-images>0.0.21</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.20")
@DisplayName("deploys Pod with image: quay.io/jkube/jkube-remote-dev:0.0.21")
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.20");
.hasFieldOrPropertyWithValue("image", "quay.io/jkube/jkube-remote-dev:0.0.21");
}
@Test
@DisplayName("deploys Pod with port definitions")
Expand Down

0 comments on commit 33bab59

Please sign in to comment.