-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Support release filebeat * Debug docker release * Fixed release file * Fixed release * Fixed dockerfile * Fixed github action * Update action script * fix release * fix permission * fix release workflow * remove tag-sha * update filebeat docker file --------- Co-authored-by: guangning <guangning@streamnative.io>
- Loading branch information
1 parent
96dac9c
commit aa26b14
Showing
2 changed files
with
39 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
FROM elastic/filebeat:7.17.5 | ||
|
||
COPY dist/filebeat_linux_amd64_v1/beat /usr/share/filebeat/filebeat | ||
|
||
USER root | ||
|
||
RUN mkdir -p /usr/share/filebeat/config /usr/share/filebeat/secret && \ | ||
chown -R filebeat:filebeat /usr/share/filebeat | ||
|
||
USER filebeat |