abogatov opened a new issue #2241:
URL: https://github.com/apache/camel-k/issues/2241


   I'm trying to deploy a simple camel-k configuration and make it work with 
Amazon EKS.
   What I did:
   1. created a new Kubernetes cluster based on Amazon EKS 
   
![image](https://user-images.githubusercontent.com/70779398/116229764-90eb3f00-a75f-11eb-919b-e75998c9d6f8.png)
   
   2. installed Camel-K using the command
   `kamel install --registry docker.io --organization <user 
id>--registry-secret <pass>`
   
![image](https://user-images.githubusercontent.com/70779398/116232825-4b307580-a763-11eb-8437-25caab7902eb.png)
   After this, I have a camel-k active pod
   
![image](https://user-images.githubusercontent.com/70779398/116229509-423da500-a75f-11eb-948f-ebad06c1a4e6.png)
   
   3. tried to run follow sample integration
   ```
   // camel-k: language=java
   import org.apache.camel.builder.RouteBuilder;
   public class Demo extends RouteBuilder {
     @Override
     public void configure() throws Exception {
         // Write your routes here, for example:
         from("timer:java?period=1000")
           .routeId("java")
           .setBody()
             .simple("Hello Camel K from ${routeId}")
           .to("log:info");
     }
   }
   
   ```
   using the command 
   `kamel run Demo.java --dev`
   
   I have the next output after this command: 
   ```
   Progress: integration "demo" in phase Initialization
   Progress: integration "demo" in phase Building Kit
   Condition "IntegrationPlatformAvailable" is "True" for Integration demo: 
default/camel-k
   Integration demo in phase "Initialization"
   Integration demo in phase "Building Kit"
   Condition "IntegrationKitAvailable" is "False" for Integration demo: 
creating a new integration kit
   Integration demo subresource kit-c23tllgnm1jafvoms1t0 (Integration Kit) 
changed phase to "Build Submitted"
   Integration demo subresource kit-c23tllgnm1jafvoms1t0 (Build) changed phase 
to "Scheduling"
   Integration demo subresource kit-c23tllgnm1jafvoms1t0 (Build) changed phase 
to "Pending"
   Integration demo subresource kit-c23tllgnm1jafvoms1t0 (Build) changed phase 
to "Running"
   Integration demo subresource kit-c23tllgnm1jafvoms1t0 (Integration Kit) 
changed phase to "Build Running"
   Integration demo subresource kit-c23tllgnm1jafvoms1t0 (Build) changed phase 
to "Failed"
   Integration demo subresource kit-c23tllgnm1jafvoms1t0 (Build) changed phase 
to "Initialization" (recovery 1 of 5)
   Integration demo subresource kit-c23tllgnm1jafvoms1t0 (Build) changed phase 
to "Scheduling" (recovery 1 of 5)
   Integration demo subresource kit-c23tllgnm1jafvoms1t0 (Build) changed phase 
to "Pending" (recovery 1 of 5)
   Integration demo subresource kit-c23tllgnm1jafvoms1t0 (Build) changed phase 
to "Running" (recovery 1 of 5)
   Integration demo subresource kit-c23tllgnm1jafvoms1t0 (Build) changed phase 
to "Failed" (recovery 1 of 5)
   (combined from similar events): Integration demo subresource 
kit-c23tllgnm1jafvoms1t0 (Build) changed phase to "Initialization" (recovery 2 
of 5)
   (combined from similar events): Integration demo subresource 
kit-c23tllgnm1jafvoms1t0 (Build) changed phase to "Scheduling" (recovery 2 of 5)
   (combined from similar events): Integration demo subresource 
kit-c23tllgnm1jafvoms1t0 (Build) changed phase to "Pending" (recovery 2 of 5)
   (combined from similar events): Integration demo subresource 
kit-c23tllgnm1jafvoms1t0 (Build) changed phase to "Running" (recovery 2 of 5)
   (combined from similar events): Integration demo subresource 
kit-c23tllgnm1jafvoms1t0 (Build) changed phase to "Failed" (recovery 2 of 5)
   (combined from similar events): Integration demo subresource 
kit-c23tllgnm1jafvoms1t0 (Build) changed phase to "Initialization" (recovery 3 
of 5)
   (combined from similar events): Integration demo subresource 
kit-c23tllgnm1jafvoms1t0 (Build) changed phase to "Scheduling" (recovery 3 of 5)
   (combined from similar events): Integration demo subresource 
kit-c23tllgnm1jafvoms1t0 (Build) changed phase to "Pending" (recovery 3 of 5)
   (combined from similar events): Integration demo subresource 
kit-c23tllgnm1jafvoms1t0 (Build) changed phase to "Running" (recovery 3 of 5)
   (combined from similar events): Integration demo subresource 
kit-c23tllgnm1jafvoms1t0 (Build) changed phase to "Failed" (recovery 3 of 5)
   (combined from similar events): Integration demo subresource 
kit-c23tllgnm1jafvoms1t0 (Build) changed phase to "Initialization" (recovery 4 
of 5)
   (combined from similar events): Integration demo subresource 
kit-c23tllgnm1jafvoms1t0 (Build) changed phase to "Scheduling" (recovery 4 of 5)
   (combined from similar events): Integration demo subresource 
kit-c23tllgnm1jafvoms1t0 (Build) changed phase to "Pending" (recovery 4 of 5)
   (combined from similar events): Integration demo subresource 
kit-c23tllgnm1jafvoms1t0 (Build) changed phase to "Running" (recovery 4 of 5)
   (combined from similar events): Integration demo subresource 
kit-c23tllgnm1jafvoms1t0 (Build) changed phase to "Failed" (recovery 4 of 5)
   (combined from similar events): Integration demo subresource 
kit-c23tllgnm1jafvoms1t0 (Build) changed phase to "Initialization" (recovery 5 
of 5)
   (combined from similar events): Integration demo subresource 
kit-c23tllgnm1jafvoms1t0 (Build) changed phase to "Scheduling" (recovery 5 of 5)
   (combined from similar events): Integration demo subresource 
kit-c23tllgnm1jafvoms1t0 (Build) changed phase to "Failed" (recovery 5 of 5)
   Integration demo subresource kit-c23tllgnm1jafvoms1t0 (Integration Kit) 
changed phase to "Error"
   Progress: integration "demo" in phase Error
   Error: integration "demo" deployment failed
   ```
   
   As well I got logs of camel pod 
   
[camel-k-operator-784d84fdc9-nkc58.log](https://github.com/apache/camel-k/files/6384017/camel-k-operator-784d84fdc9-nkc58.log)
   
   
![image](https://user-images.githubusercontent.com/70779398/116232307-a01fbc00-a762-11eb-80b3-3ec705331698.png)
   does this message in the log says something?
   
   I could not find any information in the log that can help me to understand 
the real problem of this error.
   Could someone please help how you can get the details of the error occurring?
   
   And the main question is it possible to use Camel-K with Amazon Elastic 
Kubernetes Service? 
   Just has not found any information in the documentation.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to