17 questions
0
votes
1
answer
85
views
jKube 1.14+ produces extreme long paths that break the build
I've been using jKube for a while now to deploy Spring Boot (3.1.6 on Java 17.0.9) applications to Openshift. For this purpose we use Azure Devops and its Maven command task to execute the jKube ...
0
votes
1
answer
107
views
How do I enrich Kubernetes Resources created by Kubernetes-Maven-Plugin using Kustomize?
We are using the Kubernetes-Maven-Plugin but we often face limitations. We also use kustomize, but don`t know how to properly let those two work together. Are there any best practices known?
We expect ...
0
votes
1
answer
170
views
Is it possible to deploy and debug Java application in GKE cluster from Eclipse using JKube?
Using Eclipse JKube (https://www.eclipse.org/jkube/) ,is it possible to deploy Java application to GKE cluster from the Eclipse IDE itself and perform remote debug ?
I can see some post on Openshift ...
0
votes
1
answer
939
views
kubernetes-maven-plugin - Dockerfile Build Fails with .git issue
I am testing out some migration in Maven from a Spotify dockerfile plugin with Fabric8 to just using Eclipse's JKube plugin. I have been hitting errors with what I thought would be a simple enough ...
0
votes
1
answer
393
views
JKube doesn't create imagePullSecret
I tried to use JKube maven plugin. I have a private docker repository, I specified it in my pom.xml, like this:
<plugin>
<groupId>org.eclipse.jkube</groupId>
<...
1
vote
1
answer
1k
views
Unable to generate Docker image using JKube plugin when executing k8s:build
I'm using Jkube maven plugin to generate a Docker image via a Jenkins pipeline on AWS EC2 instance under Ubuntu.
When pipeline executes mvn clean install k8s:build I'm getting this error :
[ERROR] ...
0
votes
0
answers
511
views
k8s helm-push goal for existing Helm Chart
I am trying to configure jkube helm-push goal to upload my already existing Helm Chart to our Nexus Helm Repository...(while it seems JKube is the only one supporting Nexus)..
But it seems, jkube helm-...
2
votes
1
answer
953
views
Populate and consume data from values.yaml
I'm trying to generate the helm charts using jkube maven plugin. What I would like to do is put some information in the chart template as {{ .Values.something }}. In order to do that I need to, first ...
2
votes
1
answer
1k
views
Unable to generate Kubernetes manifests yaml files using JKube maven plugin
I'm trying to generate my Kubernetes manifests (deployment.yml and service.yml) using JKube via this command : mvn k8s:resource
But I'm getting this error :
[INFO] Scanning for projects...
[INFO]
[...
1
vote
1
answer
1k
views
JKube maven plugin can't find jar file when building docker image using mvn k8s:build
I'm trying to use JKube for building and deploying APIs to my K8S cluster but when I do mvn k8s:build I'm getting this error :
[INFO] --- kubernetes-maven-plugin:1.1.1:build (default-cli) @ trips-api -...
1
vote
1
answer
352
views
Pod deployed over GitHub Repository by JKube causes 401 while deploying in MicroK8
I am trying installing a simple Spring Boot application by JKube on a microk8s cluster. As remote private docker repository I am using GitHub Packages (beta). While the microk8s is getting the pod, he ...
0
votes
2
answers
275
views
jkube resource failed: Unknown type CRD
I am using jkube to deploy a springboot helloworld application on my kubernetes installation. I wanted to add a resource fragment defining a Traefik ingress route but k8s:resource fails with "...
2
votes
1
answer
1k
views
Unable to set JVM settings with JKube Maven plugin
I'm trying to pass the JVM settings to a Java application which is configured to use JKube Maven plugin to deploy on Openshift. I've added in deployment.yaml file the following settings:
spec:
...
1
vote
1
answer
1k
views
Not able to deploy a Spring Boot Helloworld application on MicroK8s cluster using jkube plugin
I have a very simple Spring Boot Helloworld application that displays Hello World! message using a REST API.
I would like to deploy that application on my Ubuntu node which has MicroK8s installed.
...
1
vote
1
answer
1k
views
Maven / Fabric8 - build an OpenShift container image against a remote OpenShift installation
With Docker I need only provide DOCKER_HOST and appropriate credentials in order for the fabric8 plugin to be able to build my container image. As long as a Docker Registry is available - there is no ...