squakez opened a new pull request, #6128: URL: https://github.com/apache/camel-k/pull/6128
Enable the possibility to build an Integration directly from a git repository. With this PR the user can manage any kind of Integration which is expected as a Maven project stored in a git repository (ie, `https://github.com/squakez/sample.git`). The operator will take care to recover the project, building and running it. The rest of operations will happen as usual. ``` kamel run --git https://github.com/squakez/sample.git ``` which will create an Integration CR as: ``` apiVersion: camel.apache.org/v1 kind: Integration metadata: annotations: camel.apache.org/operator.id: camel-k creationTimestamp: null name: sample spec: git: url: https://github.com/squakez/sample.git ``` Once this is merged I'll provide more complete documentation. Closes #4024 <!-- Description --> <!-- Enter your extended release note in the below block. If the PR requires additional action from users switching to the new release, include the string "action required". If no release note is required, write "NONE". You can (optionally) mark this PR with labels "kind/bug" or "kind/feature" to make sure the text is added to the right section of the release notes. --> **Release Note** ```release-note NONE ``` -- 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-unsubscr...@camel.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org