-
I use Quarkus 2.9.2-FINAL ( I added my dependencies at the end). I obtain a error when I start my application in my Kubernetes Cluster (named cluster109). I try on a Kind cluser (on Windows) but I don't have that error.
The imageID are the same on both cluster(nexus.comact.com:7001/iep-codec@sha256:585f10a4418635ea624c982b20a6ee29b589810f6ef2dda44866bf462c16241f) Here the imageID on Kind, with logs (the application works)
Here the imageID on Kubernetes (cluster109)
|
Beta Was this translation helpful? Give feedback.
Replies: 6 comments 4 replies
-
Beta Was this translation helpful? Give feedback.
-
if the application.properties can help
|
Beta Was this translation helpful? Give feedback.
-
and I don't have that issue when I run the application in junit (Intellij)
|
Beta Was this translation helpful? Give feedback.
-
I would try to limit the number of dependencies and through the process of elimination try to identify the culprit. |
Beta Was this translation helpful? Give feedback.
-
I can't tell what is initiating the call that fails so we'll need a sample application if we are going to investigate further |
Beta Was this translation helpful? Give feedback.
-
the problems where : invalid keycloak url followed by a dependency that was importing jose4j 0.7.0. The Constant PERMIT was included in version 0.7.2. I updated the dependency io.kubernetes.client-java to 0.15.1 Which include jose4j 0.7.12. That fixed the originals issues |
Beta Was this translation helpful? Give feedback.
the problems where : invalid keycloak url followed by a dependency that was importing jose4j 0.7.0. The Constant PERMIT was included in version 0.7.2. I updated the dependency io.kubernetes.client-java to 0.15.1 Which include jose4j 0.7.12. That fixed the originals issues