Skip to content

Commit

Permalink
feat: bumps JKube Base images to 0.0.19
Browse files Browse the repository at this point in the history
Signed-off-by: Marc Nuri <marc@marcnuri.com>
  • Loading branch information
manusa committed Jun 13, 2023
1 parent b4404e5 commit 1c2a696
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ Usage:
* Fix #2170: `internal-microservice` profile prevents Service exposure
* Fix #2174: Profile merge constructor accounts for parentProfile field
* Fix #2187: `serviceAccount` configuration option has stopped working
* Fix #2192: Bump Kubernetes Client to 6.7.0 (use JKube Serialization util to wrap around the Kubernetes Client KubernetesSerialization)
* Fix #2192: Bump Kubernetes Client to 6.7.1 (use JKube Serialization util to wrap around the Kubernetes Client KubernetesSerialization)
* Fix #2201: Bumps JKube Base images to 0.0.19

### 1.12.0 (2023-04-03)
* Fix #1179: Move storageClass related functionality out of VolumePermissionEnricher to PersistentVolumeClaimStorageClassEnricher
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 @@ -66,7 +66,7 @@
<version.ow2.asm>9.4</version.ow2.asm>

<!-- ======================================================= -->
<version.image.jkube-images>0.0.18</version.image.jkube-images>
<version.image.jkube-images>0.0.19</version.image.jkube-images>
<!-- === Java base image versions for docker, s2i (istag == s2i) -->
<!-- Upstream -->
<version.image.java.upstream.docker>${version.image.jkube-images}</version.image.java.upstream.docker>
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.18")
@DisplayName("deploys Pod with image: quay.io/jkube/jkube-remote-dev:0.0.19")
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.18");
.hasFieldOrPropertyWithValue("image", "quay.io/jkube/jkube-remote-dev:0.0.19");
}
@Test
@DisplayName("deploys Pod with port definitions")
Expand Down

0 comments on commit 1c2a696

Please sign in to comment.