-
Notifications
You must be signed in to change notification settings - Fork 4.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Deploy Filebeat modules in the packages #3436
Conversation
jenkins, package it |
Could we move this into the build directory where it would be ignored automatically? Not 100% sure if we should use a |
@ruflin ah, I didn't think of the build directory, I can easily do that. Then the dot is not needed, I added it to avoid the confusion. |
153ae99
to
7b446f8
Compare
Setting in progress as this seems to cause issues on local package building. |
Removed 'in progress' since the issue seems to exists only on my computer. |
jenkins, package it |
@ruflin I suspect the |
Uses an intermediary `_meta/module.generated/` folder which is created on `make collect`. This gives us the opportunity to select which files are needed to be deployed in the package (currently everything but the `_meta` and `test` folders). The intermediary folder also allows us to avoid providing a custom `install-home` target in Filebeat. Part of elastic#3159.
7b446f8
to
284a747
Compare
jenkins, package it |
I changed the temp folder to |
Uses an intermediary
_meta/module.generated/
folder which is created onmake collect
. This gives us the opportunity to select which files areneeded to be deployed in the package (currently everything but the
_meta
andtest
folders).The intermediary folder also allows us to avoid providing a custom
install-home
target in Filebeat.
Part of #3159.