File tree Expand file tree Collapse file tree 3 files changed +13
-13
lines changed
cluster/addons/fluentd-elasticsearch/fluentd-es-image Expand file tree Collapse file tree 3 files changed +13
-13
lines changed Original file line number Diff line number Diff line change 1
1
source 'https://rubygems.org'
2
2
3
- gem 'activesupport' , '~> 6.0.1'
4
- gem 'fluentd' , '<=1.7.4 '
5
- gem 'fluent-plugin-concat' , '~> 2.4.0'
6
- gem 'fluent-plugin-detect-exceptions' , '~> 0.0.13'
7
- gem 'fluent-plugin-elasticsearch' , '~>3.7.1 '
8
- gem 'fluent-plugin-kubernetes_metadata_filter' , '~> 2.4.0 '
9
- gem 'fluent-plugin-multi-format-parser' , '~> 1.0.0'
10
- gem 'fluent-plugin-prometheus' , '~> 1.7.0'
11
- gem 'fluent-plugin-systemd' , '~> 1.0.2'
12
- gem 'oj' , '~> 3.10.0'
3
+ gem 'activesupport' , '6.0.2 .1'
4
+ gem 'fluentd' , '1.8.0 '
5
+ gem 'fluent-plugin-concat' , '2.4.0'
6
+ gem 'fluent-plugin-detect-exceptions' , '0.0.13'
7
+ gem 'fluent-plugin-elasticsearch' , '3.8.0 '
8
+ gem 'fluent-plugin-kubernetes_metadata_filter' , '2.4.1 '
9
+ gem 'fluent-plugin-multi-format-parser' , '1.0.0'
10
+ gem 'fluent-plugin-prometheus' , '1.7.0'
11
+ gem 'fluent-plugin-systemd' , '1.0.2'
12
+ gem 'oj' , '3.10.0'
Original file line number Diff line number Diff line change 16
16
17
17
PREFIX = quay.io/fluentd_elasticsearch
18
18
IMAGE = fluentd
19
- TAG = v2.8 .0
19
+ TAG = v2.9 .0
20
20
21
21
build :
22
22
docker build --tag ${PREFIX} /${IMAGE} :${TAG} .
Original file line number Diff line number Diff line change @@ -28,14 +28,14 @@ BUILD_DEPS="make gcc g++ libc6-dev ruby-dev libffi-dev"
28
28
29
29
# apt install
30
30
apt-get update
31
- apt-get install -y --no-install-recommends " ${BUILD_DEPS} " ca-certificates libjemalloc2 ruby
31
+ echo " ${BUILD_DEPS} ca-certificates libjemalloc2 ruby " | xargs apt-get install -y --no-install-recommends
32
32
33
33
# ruby install
34
34
echo ' gem: --no-document' >> /etc/gemrc
35
35
gem install --file Gemfile
36
36
37
37
# cleanup
38
- apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false " ${BUILD_DEPS} "
38
+ echo " ${BUILD_DEPS} " | xargs apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false
39
39
apt-get clean -y
40
40
rm -rf \
41
41
/var/cache/debconf/* \
You can’t perform that action at this time.
0 commit comments