Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[jkube-dev] [ANNOUNCE] Eclipse JKube 1.19.0 released

Hi Everyone,

We are pleased to announce Eclipse JKube 1.19.0 was just released! You can find the release at Maven Central [1].

Eclipse JKube is a collection of plugins and libraries that are used for building container images using Docker, JIB or S2I build strategies.
Eclipse JKube generates and deploys Kubernetes/OpenShift manifests at compile time too.

JKube is the successor to the deprecated Fabric8 Maven Plugin, please check our migration guide [2] if you come from FMP.

Using this release:

pom.xml:

<plugin>
  <groupId>org.eclipse.jkube</groupId>
  <artifactId>kubernetes-maven-plugin</artifactId>
  <version>1.19.0</version>
</plugin>

build.gradle:

plugins {
  id 'org.eclipse.jkube.kubernetes' version '1.19.0'
}

(Check Maven Central [1] for the rest of artifacts)

These are the features and fixes included in 1.19.0:
- Fix #3840: Bump helm-java to 0.0.19 [3]
- Fix #3833: BuildConfig resource fragment loading should use local file instead of fetching from server [4]
- Fix #3820: Skip flag does not work for helm tasks [5]
- Fix #3823: Update native binary S2I base image from UBI 8 to UBI 9 [6]
- Fix #3819: Env variable wrapper for easy interaction with system env variables [7]
- Fix #3812: Clean jkube-temp working directory before running resource task/goal [8]
- Fix #3809: Actuator liveness and readiness probe not getting generated with Spring boot 4.x.x [9]
- Fix #3775: Missing IngressClassName in NetworkingV1IngressGenerator [10]
- Fix #3732: ECR registry Auth with AWS SDK java v2 [11]
- Fix #3707: Setting readOnly flag in VolumeConfig has no effect [12]
- Fix #3591: Fix windows line endings for yaml literal blocks, json serialization config updated [13]
- Fix #3781: Native Generator does not work in Windows system, always finds multiple native executable [14]
- Fix #2286: Remove Guava dependency where ever possible [15]
- Fix #1458: Consideration of "ssl.enabled" properties to enable liveness/readiness probe for Spring Boot Actuator [16]
- Fix #3690: jkube-healthcheck-spring-boot enricher: rename property management.health.probes.enabled [17]

Your feedback is highly appreciated, you can provide it by replying to the mailing list or through the usual channels. [18] [19]

[1] https://repo1.maven.org/maven2/org/eclipse/jkube/kubernetes-maven-plugin/1.19.0/
[2] https://www.eclipse.dev/jkube/docs/migration-guide/
[3] https://github.com/eclipse-jkube/jkube/issues/3840
[4] https://github.com/eclipse-jkube/jkube/issues/3833
[5] https://github.com/eclipse-jkube/jkube/issues/3820
[6] https://github.com/eclipse-jkube/jkube/issues/3823
[7] https://github.com/eclipse-jkube/jkube/issues/3819
[8] https://github.com/eclipse-jkube/jkube/issues/3812
[9] https://github.com/eclipse-jkube/jkube/issues/3809
[10] https://github.com/eclipse-jkube/jkube/issues/3775
[11] https://github.com/eclipse-jkube/jkube/issues/3732
[12] https://github.com/eclipse-jkube/jkube/issues/3707
[13] https://github.com/eclipse-jkube/jkube/issues/3591
[14] https://github.com/eclipse-jkube/jkube/issues/3781
[15] https://github.com/eclipse-jkube/jkube/issues/2286
[16] https://github.com/eclipse-jkube/jkube/issues/1458
[17] https://github.com/eclipse-jkube/jkube/issues/3690
[18] https://github.com/eclipse-jkube/jkube
[19] https://gitter.im/eclipse/jkube

Back to the top