oscerd commented on issue #1171:
URL: 
https://github.com/apache/camel-kafka-connector/issues/1171#issuecomment-844997825


   If you noticed in the http sink I posted the name is "http-sink-kamelet"
   
   So the correct flow-binding is
   
   ```
   apiVersion: camel.apache.org/v1alpha1
   kind: KameletBinding
   metadata:
     name: timer-http-kafka
   spec:
     source:
       ref:
         kind: Kamelet
         apiVersion: camel.apache.org/v1alpha1
         name: timer-source
       properties:
         period: "5000"
         message: '"Invocation "'
     steps:
       - ref:
           kind: Kamelet
           apiVersion: camel.apache.org/v1alpha1
           name: http-sink-kamelet
         properties:
           url: "http://httpbin.org/basic-auth/pippo/pippo";
           method: GET
           authMethod: BASIC
           authUsername: "pippo"
           authPassword: "pippo"
   
     sink:
       ref:
         kind: Kamelet
         apiVersion: camel.apache.org/v1alpha1
         name: kafka-not-secured-sink
       properties:
         brokers: "my-cluster-kafka-bootstrap:9092"
         topic: "test-topic"
   ```


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