Skip to main content

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

Hi Everyone,

We are pleased to announce Eclipse JKube 1.2.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:

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

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

These are the features and fixes included in 1.2.0:
- Fix #529: `.maven-dockerignore`, `.maven-dockerexclude`, `.maven-dockerinclude` are no longer supported [3]
- Fix #558: Update CircleCI sonar jobs to run using JDK 11 environment. [4]
- Fix #546: Use `java.util.function.Function` instead of Guava's `com.google.common.base.Function` [5]
- Fix #545: Replace Boolean.valueOf with Boolean.parseBoolean for string to boolean conversion [6]
- Fix #515: Properties now get resolved in CustomResource fragments [7]
- Fix #586: Apply and Undeploy service use configured namespace [8]
- Fix #584: Improved Vert.x 4 support [9]
- Fix #592: Upgrade kubernetes client from 5.0.0 to 5.1.1 [10]
- Fix #615: Update Fabric8 Kubernetes Client from v5.1.1 to v5.2.1 [11]
- Fix #594: Debug with suspend mode removes Liveness Probe [12]
- Fix #591: Helm linter no longer fails with generated charts [13]
- Fix #587: Helm tar.gz packaged chart can be deployed [14]
- Fix #571: Replace usages of deprecated `org.apache.commons.text.StrSubstitutor` [15]
- Fix #450: Quarkus port is inferred from application.properties/yaml (considers profile too) [16]
- Fix #471: Remove the declaration of thrown runtime exceptions across javadoc [17]
- Fix #620: Added k8s support for NetworkPolicy [18]
- Fix #624: Unable to override Image Name in Simple Dockerfile Mode with `jkube.generator.name` [19]

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

[1] https://repo1.maven.org/maven2/org/eclipse/jkube/kubernetes-maven-plugin/1.2.0/
[2] https://www.eclipse.org/jkube/docs/migration-guide/
[3] https://github.com/eclipse/jkube/issues/529
[4] https://github.com/eclipse/jkube/issues/558
[5] https://github.com/eclipse/jkube/issues/546
[6] https://github.com/eclipse/jkube/issues/545
[7] https://github.com/eclipse/jkube/issues/515
[8] https://github.com/eclipse/jkube/issues/586
[9] https://github.com/eclipse/jkube/issues/584
[10] https://github.com/eclipse/jkube/issues/592
[11] https://github.com/eclipse/jkube/issues/615
[12] https://github.com/eclipse/jkube/issues/594
[13] https://github.com/eclipse/jkube/issues/591
[14] https://github.com/eclipse/jkube/issues/587
[15] https://github.com/eclipse/jkube/issues/571
[16] https://github.com/eclipse/jkube/issues/450
[17] https://github.com/eclipse/jkube/issues/471
[18] https://github.com/eclipse/jkube/issues/620
[19] https://github.com/eclipse/jkube/issues/624
[20] https://github.com/eclipse/jkube
[21] https://gitter.im/eclipse/jkube

Back to the top