Skip to main content

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

Hi Everyone,

We are pleased to announce Eclipse JKube 1.18.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.18.0</version>
</plugin>

build.gradle:

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

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

These are the features and fixes included in 1.18.0:
- Fix #1125: Support WebFlux SpringBoot projects when it comes to generate probes for actuators [3]
- Fix #2844: `oc:build` on openshift use `pods/log` to retrieve logs from build [4]
- Fix #2375: Add support for generating helm test resources via fragments [5]
- Fix #2667: Add new helm test goal task (`k8s:helm-test` for maven and `k8sHelmTest` for gradle) [6]
- Fix #3326: Micronaut healthcheck enricher infers overridden server port in application.properties [7]
- Fix #3354: Build fails with `imageStream` for `buildRecreate` value [8]
- Fix #3578: Skip executable libs when searching Spring Boot native binary [9]
- Fix #3623: Updated jkube-images to 0.0.25 [10]

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

[1] https://repo1.maven.org/maven2/org/eclipse/jkube/kubernetes-maven-plugin/1.18.0/
[2] https://www.eclipse.dev/jkube/docs/migration-guide/
[3] https://github.com/eclipse-jkube/jkube/issues/1125
[4] https://github.com/eclipse-jkube/jkube/issues/2844
[5] https://github.com/eclipse-jkube/jkube/issues/2375
[6] https://github.com/eclipse-jkube/jkube/issues/2667
[7] https://github.com/eclipse-jkube/jkube/issues/3326
[8] https://github.com/eclipse-jkube/jkube/issues/3354
[9] https://github.com/eclipse-jkube/jkube/issues/3578
[10] https://github.com/eclipse-jkube/jkube/issues/3623
[11] https://github.com/eclipse-jkube/jkube
[12] https://gitter.im/eclipse/jkube


Back to the top