You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by GitBox <gi...@apache.org> on 2021/08/04 17:29:27 UTC

[GitHub] [camel-k] jeffgbradley2 commented on issue #2537: Multiple of the examples fail on Minikube

jeffgbradley2 commented on issue #2537:
URL: https://github.com/apache/camel-k/issues/2537#issuecomment-892839664


   Still trying to get simple examples to run and failing. Only single java files seem to work, although I _can_ add a property file. XML files, Groovy files, do not work. For example:
   
   After following the instructions for installation on Minikube found [here](https://camel.apache.org/camel-k/latest/installation/minikube.html) and [here](https://camel.apache.org/camel-k/latest/installation/installation.html#procedure) I have Minikube running and configured, and Camel K installed:
   
   ```text
   ➜  01-basic git:(main) ✗ k get integrationplatform
   NAME      PHASE
   camel-k   Ready
   ➜  01-basic git:(main) ✗ k get pods
   NAME                                READY   STATUS    RESTARTS   AGE
   camel-k-operator-784d84fdc9-9gz2c   1/1     Running   0          25m
   ```
   
   Created a basic XML route below.
   
   ```xml
   <routes xmlns="http://camel.apache.org/schema/spring">
       <route id="simple-xml-route">
           <from uri="timer:tick" />
           <to uri="log:info"/>
       </route>
   </routes>
   ```
   
   Ran the integration with `kamel`.
   
   ```text
   ➜  01-basic git:(main) ✗ kamel run basic.xml --dev
   integration "basic" created
   Condition "IntegrationPlatformAvailable" is "True" for Integration basic: camel-basic/camel-k
   Progress: integration "basic" in phase Initialization
   Progress: integration "basic" in phase Building Kit
   Integration basic in phase "Initialization"
   Integration basic in phase "Building Kit"
   Condition "IntegrationKitAvailable" is "False" for Integration basic: creating a new integration kit
   Integration basic subresource kit-c45csbab3g2ddljd8njg (Integration Kit) changed phase to "Build Submitted"
   Integration basic subresource kit-c45csbab3g2ddljd8njg (Build) changed phase to "Scheduling"
   Integration basic subresource kit-c45csbab3g2ddljd8njg (Build) changed phase to "Pending"
   Integration basic subresource kit-c45csbab3g2ddljd8njg (Build) changed phase to "Running"
   Integration basic subresource kit-c45csbab3g2ddljd8njg (Integration Kit) changed phase to "Build Running"
   Integration basic subresource kit-c45csbab3g2ddljd8njg (Build) changed phase to "Failed"
   ```
   
   
   


-- 
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.

To unsubscribe, e-mail: commits-unsubscribe@camel.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org