Skip to main content

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

Hi Everyone,

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

build.gradle:

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

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

These are the features and fixes included in 1.11.0:
- Fix #1316: Add support for adding InitContainers via plugin configuration [3]
- Fix #1439: Add hint to use `jkube.domain` if `createExternalUrls` is used without domain [4]
- Fix #1459: Route Generation should support `8443` as default web port [5]
- Fix #1546: Migrate to JUnit5 testing framework [6]
- Fix #1829: Add trailing newline for labels/annotations for multiline values to avoid setting block chomping indicator [7]
- Fix #1858: Properties in image name not replaced [8]
- Fix #1934: schema validation warnings during `mvn oc:resource` and `gradle k8sResource` [9]
- Fix #1935: `oc:remote-dev` goal / `ocRemoteDev` task have wrong log prefixes [10]
- Fix #1966: Old reference to fmp in documentation [11]
- Fix #1974: Remove unused methods in KubernetesResourceUtil [12]
- Fix #2003: check local port available on start remote-dev [13]
- Fix #2004: AnsiOutputStream exceptions don't prevent logging or program execution [14]
- Fix #2008: resources validated after their generation by `k8s:resource` [15]
- Fix #2052: Remote Dev discovers remote ports for local services exposed in the cluster [16]
- Fix #2052: Remote Dev includes a SOCKS 5 proxy [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.11.0/
[2] https://www.eclipse.org/jkube/docs/migration-guide/
[3] https://github.com/eclipse/jkube/issues/1316
[4] https://github.com/eclipse/jkube/issues/1439
[5] https://github.com/eclipse/jkube/issues/1459
[6] https://github.com/eclipse/jkube/issues/1546
[7] https://github.com/eclipse/jkube/issues/1829
[8] https://github.com/eclipse/jkube/issues/1858
[9] https://github.com/eclipse/jkube/issues/1934
[10] https://github.com/eclipse/jkube/issues/1935
[11] https://github.com/eclipse/jkube/issues/1966
[12] https://github.com/eclipse/jkube/issues/1974
[13] https://github.com/eclipse/jkube/issues/2003
[14] https://github.com/eclipse/jkube/issues/2004
[15] https://github.com/eclipse/jkube/issues/2008
[16] https://github.com/eclipse/jkube/issues/2052
[17] https://github.com/eclipse/jkube/issues/2052
[18] https://github.com/eclipse/jkube
[19] https://gitter.im/eclipse/jkube

Back to the top