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/11/05 00:50:40 UTC

[GitHub] [camel-karavan] hguerrero opened a new issue #79: Add the option to save/export only the routes and not the integration

hguerrero opened a new issue #79:
URL: https://github.com/apache/camel-karavan/issues/79


   Add an option to export the yaml flow without the surrounding metadata related to the integration.
   
   Instead of 
   
   ```
   apiVersion: camel.apache.org/v1
   kind: Integration
   metadata:
     name: integration1
   spec:
     flows:
       - from:
           parameters:
             period: 3000
           steps:
             - log:
                 logName: result
                 loggingLevel: INFO
                 message: '${body}'
           uri: 'kamelet:chuck-norris-source'
   ```
   
   just this:
   
   ```
   # camel-k: language=yaml
   
   - from:
       uri: 'kamelet:chuck-norris-source'
       parameters:
         period: 3000
       steps:
         - to: "log:info"```


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



[GitHub] [camel-karavan] hguerrero commented on issue #79: Add the option to save/export only the routes and not the integration for standalone

Posted by GitBox <gi...@apache.org>.
hguerrero commented on issue #79:
URL: https://github.com/apache/camel-karavan/issues/79#issuecomment-961976597


   @mgubaidullin Sorry, was referring to the standalone version. Updated the title of the issue to reflect it.


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



[GitHub] [camel-karavan] hguerrero commented on issue #79: Add the option to save/export only the routes and not the integration for standalone

Posted by GitBox <gi...@apache.org>.
hguerrero commented on issue #79:
URL: https://github.com/apache/camel-karavan/issues/79#issuecomment-961976597


   @mgubaidullin Sorry, was referring to the standalone version. Updated the title of the issue to reflect it.


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



[GitHub] [camel-karavan] mgubaidullin closed issue #79: Add the option to save/export only the routes and not the integration for standalone

Posted by GitBox <gi...@apache.org>.
mgubaidullin closed issue #79:
URL: https://github.com/apache/camel-karavan/issues/79


   


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



[GitHub] [camel-karavan] mgubaidullin commented on issue #79: Add the option to save/export only the routes and not the integration

Posted by GitBox <gi...@apache.org>.
mgubaidullin commented on issue #79:
URL: https://github.com/apache/camel-karavan/issues/79#issuecomment-961900529


   In Karavan VSCode extension you could create plain yaml with routes or CRD
   
   <img width="449" alt="Screen Shot 2021-11-05 at 9 35 15 AM" src="https://user-images.githubusercontent.com/1379213/140518738-ceab0f5b-95e8-4266-8adf-f2ad7ae6ddc8.png">
   
   
   


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



[GitHub] [camel-karavan] mgubaidullin commented on issue #79: Add the option to save/export only the routes and not the integration

Posted by GitBox <gi...@apache.org>.
mgubaidullin commented on issue #79:
URL: https://github.com/apache/camel-karavan/issues/79#issuecomment-961900529


   In Karavan VSCode extension you could create plain yaml with routes or CRD
   
   <img width="449" alt="Screen Shot 2021-11-05 at 9 35 15 AM" src="https://user-images.githubusercontent.com/1379213/140518738-ceab0f5b-95e8-4266-8adf-f2ad7ae6ddc8.png">
   
   
   


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



[GitHub] [camel-karavan] mgubaidullin commented on issue #79: Add the option to save/export only the routes and not the integration for standalone

Posted by GitBox <gi...@apache.org>.
mgubaidullin commented on issue #79:
URL: https://github.com/apache/camel-karavan/issues/79#issuecomment-967759424


   Uncheck CRD to save simple YAML
   
   ![Screen Shot 2021-11-12 at 8 47 08 PM](https://user-images.githubusercontent.com/1379213/141601411-c0fd303d-fe49-4b44-8897-fddb4d7755a5.png)
   


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



[GitHub] [camel-karavan] hguerrero commented on issue #79: Add the option to save/export only the routes and not the integration for standalone

Posted by GitBox <gi...@apache.org>.
hguerrero commented on issue #79:
URL: https://github.com/apache/camel-karavan/issues/79#issuecomment-961976597


   @mgubaidullin Sorry, was referring to the standalone version. Updated the title of the issue to reflect it.


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



[GitHub] [camel-karavan] mgubaidullin commented on issue #79: Add the option to save/export only the routes and not the integration

Posted by GitBox <gi...@apache.org>.
mgubaidullin commented on issue #79:
URL: https://github.com/apache/camel-karavan/issues/79#issuecomment-961900529


   In Karavan VSCode extension you could create plain yaml with routes or CRD
   
   <img width="449" alt="Screen Shot 2021-11-05 at 9 35 15 AM" src="https://user-images.githubusercontent.com/1379213/140518738-ceab0f5b-95e8-4266-8adf-f2ad7ae6ddc8.png">
   
   
   


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