anandyadav3559 commented on issue #6631: URL: https://github.com/apache/camel-k/issues/6631#issuecomment-4494779201
Currently the installation flow relies on the `make` target, which requires cloning the full repository first: ```bash git clone https://github.com/<org>/<repo>.git cd <repo> make install ``` One possible approach is to keep the current `make`-based flow and only improve dependency validation/error handling around it. Another possible approach is to support direct installation from a tagged release using Kustomize remote resources, for example: ```bash kubectl apply -k github.com/<org>/<repo>/config/default?ref=vX.Y.Z ``` or: ```bash kustomize build github.com/<org>/<repo>/config/default?ref=vX.Y.Z | kubectl apply -f - ``` This would avoid requiring users to clone the repository or depend on `make`. I am okay with either approach and would prefer maintainer guidance on which direction is preferred before proceeding further. -- 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]
