Skip to content

Commit

Permalink
Fix #52: Use proper case in JKube brand name
Browse files Browse the repository at this point in the history
  • Loading branch information
rohanKanojia authored and manusa committed Feb 28, 2020
1 parent 639082d commit dddbfb6
Show file tree
Hide file tree
Showing 48 changed files with 67 additions and 67 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changes

This document main purpose is to list changes which might affect backwards compatibility. It will not list all releases as Eclipse Jkube is build in a continous delivery fashion.
This document main purpose is to list changes which might affect backwards compatibility. It will not list all releases as Eclipse JKube is build in a continous delivery fashion.

We use semantic versioning in some slight variation until our feature set has stabilized and the missing pieces has been filled in:

Expand Down
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ pipeline {
sh '''
# Setup Git Config
git config --global user.email eclipsejkubebot@eclipse.org
git config --global user.name "Eclipse Jkube Bot"
git config --global user.name "Eclipse JKube Bot"
git clone https://eclipse-jkube-bot:$GH_TOKEN@github.com/eclipse/jkube.git && cd jkube
# Find Project release version
Expand Down
22 changes: 11 additions & 11 deletions MIGRATION-GUIDE.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# Migration Guide for projects using Fabric8 Maven Plugin to Eclipse Jkube
# Migration Guide for projects using Fabric8 Maven Plugin to Eclipse JKube

For any project which is using [Fabric8 Maven Plugin](https://github.com/fabric8io/fabric8-maven-plugin) right now. Migrating to Eclipse Jkube should not be that hard. Fabric8 Maven Plugin used to handle both Kubernetes and Openshift clusters but Eclipse Jkube has separate plugins for these two different environments.
For any project which is using [Fabric8 Maven Plugin](https://github.com/fabric8io/fabric8-maven-plugin) right now. Migrating to Eclipse JKube should not be that hard. Fabric8 Maven Plugin used to handle both Kubernetes and Openshift clusters but Eclipse JKube has separate plugins for these two different environments.

## For Project Using Kubernetes
For any project deploying their applications onto Kubernetes, we need to replace [Fabric8 Maven Plugin](https://github.com/fabric8io/fabric8-maven-plugin) with Eclipse Jkube like this. Let's say in case of zero-configuration, we just need to replace `groupId` and `artifactId` like this:
For any project deploying their applications onto Kubernetes, we need to replace [Fabric8 Maven Plugin](https://github.com/fabric8io/fabric8-maven-plugin) with Eclipse JKube like this. Let's say in case of zero-configuration, we just need to replace `groupId` and `artifactId` like this:

### FMP zero configuration mode:
```
Expand All @@ -14,7 +14,7 @@ For any project deploying their applications onto Kubernetes, we need to replace
</plugin>
```

### Eclipse Jkube zero configuration mode:
### Eclipse JKube zero configuration mode:
```
<plugin>
<groupId>org.eclipse.jkube</groupId>
Expand Down Expand Up @@ -73,7 +73,7 @@ In cases where XML configuration is used for enrichers and generators. All the e
</executions>
</plugin>
```
### Eclipse Jkube XML configuration for enrichers, generators and resources:
### Eclipse JKube XML configuration for enrichers, generators and resources:
```
<plugin>
<groupId>org.eclipse.jkube</groupId>
Expand Down Expand Up @@ -122,7 +122,7 @@ In cases where XML configuration is used for enrichers and generators. All the e
</plugin>
```

In case you want to customize Kubernetes manifests added by FMP by means other than XML configuration, you usually add yourresources to `src/main/fabric8` directory and FMP used to pick these during enrichment process and merge it alongwith default generated resources. In case of Eclipse Jkube also it's the same, only the `src/main/fabric8` directory is replaced with`src/main/jkube` directory:
In case you want to customize Kubernetes manifests added by FMP by means other than XML configuration, you usually add yourresources to `src/main/fabric8` directory and FMP used to pick these during enrichment process and merge it alongwith default generated resources. In case of Eclipse JKube also it's the same, only the `src/main/fabric8` directory is replaced with`src/main/jkube` directory:

### Project making use of old FMP fragment configuration:

Expand All @@ -131,15 +131,15 @@ In case you want to customize Kubernetes manifests added by FMP by means other t
deployment.yml sa.yml service.yml
```
### Project making use of Eclipse Jkube fragment configuration:
### Project making use of Eclipse JKube fragment configuration:
```
~/work/repos/jkube/quickstarts/maven/external-resources : $ ls src/main/jkube/
deployment.yml sa.yml service.yml
```


## For Project Using OpenShift
For any project deploying their applications onto OpenShift, we need to replace [Fabric8 Maven Plugin](https://github.com/fabric8io/fabric8-maven-plugin) with Eclipse Jkube like this. Let's say in case of zero-configuration, we just need to replace `groupId` and `artifactId` like this:
For any project deploying their applications onto OpenShift, we need to replace [Fabric8 Maven Plugin](https://github.com/fabric8io/fabric8-maven-plugin) with Eclipse JKube like this. Let's say in case of zero-configuration, we just need to replace `groupId` and `artifactId` like this:

### FMP zero configuration mode:
```
Expand All @@ -150,7 +150,7 @@ For any project deploying their applications onto OpenShift, we need to replace
</plugin>
```

### Eclipse Jkube zero configuration mode:
### Eclipse JKube zero configuration mode:
```
<plugin>
<groupId>org.eclipse.jkube</groupId>
Expand All @@ -163,7 +163,7 @@ XML configuration and resource fragment configuration are same as Kubernetes Mav

## Image Configuration for Docker builds

For projects relying on FMP's `ImageConfiguration` model for building docker images. There isn't any change in Eclipse Jkube in XML configuration. For example, let's consider this simple project's plugin configuration:
For projects relying on FMP's `ImageConfiguration` model for building docker images. There isn't any change in Eclipse JKube in XML configuration. For example, let's consider this simple project's plugin configuration:

### FMP Image Configuration:
```
Expand Down Expand Up @@ -194,7 +194,7 @@ For projects relying on FMP's `ImageConfiguration` model for building docker ima
</plugin>
```

### Eclipse Jkube Image Configuration:
### Eclipse JKube Image Configuration:
```
<plugin>
<groupId>org.eclipse.jkube</groupId>
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Jkube
# JKube

[![Circle CI](https://circleci.com/gh/eclipse/jkube/tree/master.svg?style=shield)](https://circleci.com/gh/eclipse/jkube/tree/master)
[![License](https://img.shields.io/badge/License-EPL%202.0-red.svg?label=license&logo=eclipse)](https://www.eclipse.org/legal/epl-2.0/)
Expand All @@ -8,11 +8,11 @@

<p align="center">
<a href="https://www.eclipse.org/jkube/">
<img src="https://i.imgur.com/EWL66xC.png" width="350" alt="Eclipse Jkube"/>
<img src="https://i.imgur.com/EWL66xC.png" width="350" alt="Eclipse JKube"/>
</a>
</p>

This project contains various building blocks for the jkube developer toolbox.
This project contains various building blocks for the JKube developer toolbox.

Actually it contains the following abstractions which has been extracted from both projects:

Expand All @@ -26,7 +26,7 @@ Actually it contains the following abstractions which has been extracted from bo
[![Documentation](https://img.shields.io/badge/plugin-documentation-lightgrey)](https://htmlpreview.github.io/?https://github.com/eclipse/jkube/blob/master/openshift-maven-plugin/doc/index.html)
![Sample Demo](openshift-maven-plugin/oc-maven-plugin-demo.gif)

* **Jkube-kit**, which consists of the following:
* **JKube-kit**, which consists of the following:

* **Generator** framework for automatically generating Docker images by examining project information.<br />
[![Maven Central](https://img.shields.io/maven-central/v/org.eclipse.jkube/jkube-kit-generator-api.svg?label=Maven%20Central)](https://search.maven.org/search?q=g:%22org.eclipse.jkube%22%20AND%20a:%22jkube-kit-generator-api%22) [![Javadocs](http://www.javadoc.io/badge/org.eclipse.jkube/jkube-kit-generator-api.svg?color=blue)](http://www.javadoc.io/doc/org.eclipse.jkube/jkube-kit-generator-api)
Expand Down
4 changes: 2 additions & 2 deletions jkube-kit/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## jkube-kit
## JKube-Kit

This project contains various building blocks for the jkube developer toolbox.
This project contains various building blocks for the JKube developer toolbox.

Actually it contains the following abstractions which has been extracted from both projects:

Expand Down
2 changes: 1 addition & 1 deletion jkube-kit/build/api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<artifactId>jkube-kit-build-api</artifactId>
<version>0.2-SNAPSHOT</version>

<name>Jkube Kit :: Build :: API</name>
<name>JKube Kit :: Build :: API</name>

<dependencies>

Expand Down
2 changes: 1 addition & 1 deletion jkube-kit/build/service/docker/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

<artifactId>jkube-kit-build-service-docker</artifactId>

<name>Jkube Kit :: Build :: Service :: Docker</name>
<name>JKube Kit :: Build :: Service :: Docker</name>

<dependencies>

Expand Down
2 changes: 1 addition & 1 deletion jkube-kit/common-maven/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

<artifactId>jkube-kit-common-maven</artifactId>

<name>Jkube Kit :: Common Maven</name>
<name>JKube Kit :: Common Maven</name>

<dependencies>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion jkube-kit/common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

<artifactId>jkube-kit-common</artifactId>

<name>Jkube Kit :: Common</name>
<name>JKube Kit :: Common</name>

<dependencies>

Expand Down
2 changes: 1 addition & 1 deletion jkube-kit/config/image/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

<artifactId>jkube-kit-config-image</artifactId>

<name>Jkube Kit :: Config :: Image</name>
<name>JKube Kit :: Config :: Image</name>

<dependencies>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion jkube-kit/config/resource/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

<artifactId>jkube-kit-config-resource</artifactId>

<name>Jkube Kit :: Config :: Resource</name>
<name>JKube Kit :: Config :: Resource</name>

<dependencies>

Expand Down
2 changes: 1 addition & 1 deletion jkube-kit/doc/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<version>0.2-SNAPSHOT</version>
<packaging>jar</packaging>

<name>Jkube Kit :: Documentation</name>
<name>JKube Kit :: Documentation</name>

<build>

Expand Down
2 changes: 1 addition & 1 deletion jkube-kit/enricher/api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

<artifactId>jkube-kit-enricher-api</artifactId>

<name>Jkube Kit :: Enricher :: API</name>
<name>JKube Kit :: Enricher :: API</name>

<dependencies>

Expand Down
2 changes: 1 addition & 1 deletion jkube-kit/enricher/generic/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

<artifactId>jkube-kit-enricher-generic</artifactId>

<name>Jkube Kit :: Enricher :: Generic</name>
<name>JKube Kit :: Enricher :: Generic</name>

<dependencies>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion jkube-kit/enricher/specific/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

<artifactId>jkube-kit-enricher-specific</artifactId>

<name>Jkube Kit :: Enricher :: Specific</name>
<name>JKube Kit :: Enricher :: Specific</name>

<dependencies>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion jkube-kit/generator/api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

<artifactId>jkube-kit-generator-api</artifactId>

<name>Jkube Kit :: Generator :: API</name>
<name>JKube Kit :: Generator :: API</name>

<properties>
<!-- Default images used in Java based generators -->
Expand Down
2 changes: 1 addition & 1 deletion jkube-kit/generator/java-exec/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

<artifactId>jkube-kit-generator-java-exec</artifactId>

<name>Jkube Kit :: Generator :: Java Exec</name>
<name>JKube Kit :: Generator :: Java Exec</name>

<dependencies>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion jkube-kit/generator/karaf/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

<artifactId>jkube-kit-generator-karaf</artifactId>

<name>Jkube Kit :: Generator :: Karaf</name>
<name>JKube Kit :: Generator :: Karaf</name>

<dependencies>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion jkube-kit/generator/webapp/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

<artifactId>jkube-kit-generator-webapp</artifactId>

<name>Jkube Kit :: Generator :: WebApp</name>
<name>JKube Kit :: Generator :: WebApp</name>

<dependencies>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion jkube-kit/generator/wildfly-swarm/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

<artifactId>jkube-kit-generator-wildfly-swarm</artifactId>

<name>Jkube Kit :: Generator :: WildFly Swarm</name>
<name>JKube Kit :: Generator :: WildFly Swarm</name>

<dependencies>

Expand Down
2 changes: 1 addition & 1 deletion jkube-kit/jkube-kit-quarkus/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<modelVersion>4.0.0</modelVersion>

<artifactId>jkube-kit-quarkus</artifactId>
<name>Jkube Kit :: Quarkus</name>
<name>JKube Kit :: Quarkus</name>

<dependencies>

Expand Down
2 changes: 1 addition & 1 deletion jkube-kit/jkube-kit-spring-boot/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<modelVersion>4.0.0</modelVersion>

<artifactId>jkube-kit-spring-boot</artifactId>
<name>Jkube Kit :: Spring-Boot</name>
<name>JKube Kit :: Spring-Boot</name>

<dependencies>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion jkube-kit/jkube-kit-thorntail-v2/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<modelVersion>4.0.0</modelVersion>

<artifactId>jkube-kit-thorntail</artifactId>
<name>Jkube Kit :: Thorntail</name>
<name>JKube Kit :: Thorntail</name>

<dependencies>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion jkube-kit/jkube-kit-vertx/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<modelVersion>4.0.0</modelVersion>

<artifactId>jkube-kit-vertx</artifactId>
<name>Jkube Kit :: Vert.x</name>
<name>JKube Kit :: Vert.x</name>

<dependencies>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion jkube-kit/parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<artifactId>jkube-kit-parent</artifactId>
<packaging>pom</packaging>

<name>Jkube Kit :: Parent</name>
<name>JKube Kit :: Parent</name>
<description>${project.name}</description>


Expand Down
2 changes: 1 addition & 1 deletion jkube-kit/profile/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<modelVersion>4.0.0</modelVersion>

<artifactId>jkube-kit-profiles</artifactId>
<name>Jkube Kit :: Profile</name>
<name>JKube Kit :: Profile</name>

<dependencies>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion jkube-kit/resource/service/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

<artifactId>jkube-kit-resource-service</artifactId>

<name>Jkube Kit :: Resource :: Service</name>
<name>JKube Kit :: Resource :: Service</name>

<dependencies>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion jkube-kit/watcher/api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

<artifactId>jkube-kit-watcher-api</artifactId>

<name>Jkube Kit :: Watcher :: API</name>
<name>JKube Kit :: Watcher :: API</name>

<dependencies>

Expand Down
2 changes: 1 addition & 1 deletion jkube-kit/watcher/standard/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

<artifactId>jkube-kit-watcher-standard</artifactId>

<name>Jkube Kit :: Watcher :: Standard</name>
<name>JKube Kit :: Watcher :: Standard</name>

<dependencies>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion quickstarts/maven/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Getting Started Guides

This repository contains a set of examples about the Eclipse Jkube plugins.
This repository contains a set of examples about the Eclipse JKube plugins.

## Prerequisites
- [Maven 3.5.3+](https://maven.apache.org/)
Expand Down
2 changes: 1 addition & 1 deletion quickstarts/maven/external-resources/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<groupId>org.eclipse.jkube</groupId>
<version>0.1.1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Eclipse Jkube Maven :: Sample :: External Reources</name>
<name>Eclipse JKube Maven :: Sample :: External Reources</name>


<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion quickstarts/maven/ibm-javaee8-webprofile-liberty/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## A WebSphere Liberty Java EE 8 based application prepared for development using Eclipse Jkube Kubernetes Maven Plugin
## A WebSphere Liberty Java EE 8 based application prepared for development using Eclipse JKube Kubernetes Maven Plugin

**WebSphere Liberty** is a fast, dynamic, and easy-to-use Java application server, built on the open source
[Open Liberty][openliberty] project. Ideal for developers but also ready for production, on-premise or in the cloud.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<version>0.1.0</version>
<packaging>jar</packaging>

<name>Eclipse Jkube Maven :: Sample :: JavaEE 8 WebProfile :: IT</name>
<name>Eclipse JKube Maven :: Sample :: JavaEE 8 WebProfile :: IT</name>

<parent>
<groupId>org.eclipse.jkube</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<version>0.1.0</version>
<packaging>war</packaging>

<name>Eclipse Jkube Maven :: Sample :: JavaEE 8 WebProfile :: Application</name>
<name>Eclipse JKube Maven :: Sample :: JavaEE 8 WebProfile :: Application</name>

<parent>
<groupId>org.eclipse.jkube</groupId>
Expand Down
Loading

0 comments on commit dddbfb6

Please sign in to comment.