Skip to main content

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

Hi Everyone,

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

build.gradle:

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

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

These are the features and fixes included in 1.7.0:
- Fix #1315: Pod Log Service works for Jobs with no selector [3]
- Fix #1126: Liveness and readiness TCP ports are not serialized as numbers when defined as numbers [4]
- Fix #1211: Port `java-options-env-merge` integration test and ContainerEnvJavaOptionsMergeEnricher documentation to gradle [5]
- Fix #1214: Add integration test to verify `jkube.debug.enabled` flag works as expected [6]
- Fix #1236: Add integration tests for DefaultControllerEnricher in gradle plugins [7]
- Fix #1237: Add gradle project integration test for DefaultMetadataEnricher [8]
- Fix #1238: Port DefaultNamespaceEnricher integration test and documentation to gradle plugins [9]
- Fix #1239: Add documentation and integration test for DefaultServiceEnricher in gradle plugins [10]
- Fix #1240: Add documentation for DependencyEnricher [11]
- Fix #1257: Add documentation for ImageEnricher [12]
- Fix #1278: Enricher with type Job does not generate mandatory `spec.template.spec.restartPolicy` [13]
- Fix #1294: Prometheus and Jolokia agents can be disabled by setting their port to `0` [14]

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

[1] https://repo1.maven.org/maven2/org/eclipse/jkube/kubernetes-maven-plugin/1.7.0/
[2] https://www.eclipse.org/jkube/docs/migration-guide/
[3] https://github.com/eclipse/jkube/issues/1315
[4] https://github.com/eclipse/jkube/issues/1126
[5] https://github.com/eclipse/jkube/issues/1211
[6] https://github.com/eclipse/jkube/issues/1214
[7] https://github.com/eclipse/jkube/issues/1236
[8] https://github.com/eclipse/jkube/issues/1237
[9] https://github.com/eclipse/jkube/issues/1238
[10] https://github.com/eclipse/jkube/issues/1239
[11] https://github.com/eclipse/jkube/issues/1240
[12] https://github.com/eclipse/jkube/issues/1257
[13] https://github.com/eclipse/jkube/issues/1278
[14] https://github.com/eclipse/jkube/issues/1294
[15] https://github.com/eclipse/jkube
[16] https://gitter.im/eclipse/jkube

Back to the top