forked from fluent/fluentd-kubernetes-daemonset
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use Bundler to manage gem dependencies
* Makes builds more deterministic * Avoids issues with plugin incompatibility with fluentd version * Vulnerability scanning from github * ~ moves a little closer to solving fluent#43 perhaps * Fixes fluent#27
- Loading branch information
Showing
4 changed files
with
84 additions
and
45 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
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,43 @@ | ||
<% fluentd_ver = version.split("-").first[1..-1] %> | ||
<% target = (dockerfile.split("/").last.split("-").last) %> | ||
<% is_alpine = (dockerfile.split("/").last.split("-").first == "alpine") %> | ||
# AUTOMATICALLY GENERATED | ||
# DO NOT EDIT THIS FILE DIRECTLY, USE /templates/Gemfile.erb | ||
|
||
source "https://rubygems.org" | ||
|
||
gem "fluentd", "<%= fluentd_ver %>" | ||
gem "fluent-plugin-secure-forward" | ||
gem "fluent-plugin-record-reformer" | ||
<% case target when "elasticsearch"%> | ||
gem "fluent-plugin-elasticsearch" | ||
<% when "logentries"%> | ||
#gem "fluent-plugin-logentries" | ||
<% when "loggly"%> | ||
gem "fluent-plugin-loggly" | ||
<% when "cloudwatch"%> | ||
gem "aws-sdk-core", "2.10.50" | ||
gem "fluent-plugin-cloudwatch-logs", "0.4.0" | ||
<% when "stackdriver" %> | ||
gem "fluent-plugin-google-cloud" | ||
<% when "s3" %> | ||
gem "fluent-plugin-s3", "~>0.8" | ||
<% when "gcs" %> | ||
gem "fluent-plugin-gcs", "~>0.3" | ||
<% when "graylog" %> | ||
gem "gelf", git: "https://github.com/graylog-labs/gelf-rb.git" | ||
gem "fluent-plugin-gelf-hs" | ||
<% when "logzio" %> | ||
gem "fluent-plugin-logzio" | ||
<% when "papertrail" %> | ||
gem "fluent-plugin-papertrail" | ||
<% when "syslog" %> | ||
gem "fluent-plugin-kubernetes_remote_syslog", git: "https://github.com/georgegoh/fluent-plugin-kubernetes_remote_syslog.git" | ||
<% when "kafka" %> | ||
gem "fluent-plugin-kafka" | ||
<% end %> | ||
gem "fluent-plugin-kubernetes_metadata_filter" | ||
<% if !is_alpine %> | ||
gem "ffi" | ||
gem "fluent-plugin-systemd" | ||
<% end %> |
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