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: [email protected]

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


Reply via email to