Skip to content

Commit

Permalink
kubernetes templates updates for dedot (#84)
Browse files Browse the repository at this point in the history
  • Loading branch information
tamir-michaeli authored Jan 23, 2023
1 parent b47bfd5 commit 75f6bfd
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 13 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,9 @@ By default, latest images launch `prometheus` plugins to monitor fluentd. You ca
### Changelog
**logzio/logzio-fluentd**:
- v1.3.0:
- Added plugin `fluent-plugin-dedot_filter`
- Added plugin `fluent-plugin-dedot_filter`.
- Updated image in daemonset templates, increased memory and cpu requirements.
- Added configuration for dedot plugin in configmp template.
- v1.2.0:
- Upgrade fluentd to 1.15.
- Upgrade plugin `fluent-plugin-kubernetes_metadata_filter` to `3.1.2`([#80](https://github.com/logzio/logzio-k8s/pull/80)).
Expand Down
6 changes: 6 additions & 0 deletions configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -249,6 +249,12 @@ data:
kubernetes_url "#{ENV['FLUENT_FILTER_KUBERNETES_URL'] || 'https://' + ENV.fetch('KUBERNETES_SERVICE_HOST') + ':' + ENV.fetch('KUBERNETES_SERVICE_PORT') + '/api'}"
verify_ssl "#{ENV['KUBERNETES_VERIFY_SSL'] || true}"
</filter>
<filter **>
@type dedot
de_dot true
de_dot_separator _
de_dot_nested true
</filter>
system.conf: |
<system>
Expand Down
8 changes: 4 additions & 4 deletions logzio-daemonset-containerd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ spec:
mountPath: /fluentd/etc
containers:
- name: fluentd
image: logzio/logzio-fluentd:1.2.0
image: logzio/logzio-fluentd:1.3.0
env:
- name: LOGZIO_LOG_SHIPPING_TOKEN
valueFrom:
Expand All @@ -99,10 +99,10 @@ spec:
value: "containerd"
resources:
limits:
memory: 200Mi
memory: 500Mi
requests:
cpu: 100m
memory: 200Mi
cpu: 200m
memory: 500Mi
volumeMounts:
- name: varlog
mountPath: /var/log
Expand Down
8 changes: 4 additions & 4 deletions logzio-daemonset-rbac.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ spec:
mountPath: /fluentd/etc
containers:
- name: fluentd
image: logzio/logzio-fluentd:1.2.0
image: logzio/logzio-fluentd:1.3.0
env:
- name: LOGZIO_LOG_SHIPPING_TOKEN
valueFrom:
Expand All @@ -99,10 +99,10 @@ spec:
value: "docker"
resources:
limits:
memory: 200Mi
memory: 500Mi
requests:
cpu: 100m
memory: 200Mi
cpu: 200m
memory: 500Mi
volumeMounts:
- name: varlog
mountPath: /var/log
Expand Down
8 changes: 4 additions & 4 deletions logzio-daemonset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ spec:
mountPath: /fluentd/etc
containers:
- name: fluentd
image: logzio/logzio-fluentd:1.2.0
image: logzio/logzio-fluentd:1.3.0
env:
- name: LOGZIO_LOG_SHIPPING_TOKEN
valueFrom:
Expand All @@ -60,10 +60,10 @@ spec:
value: "docker"
resources:
limits:
memory: 200Mi
memory: 500Mi
requests:
cpu: 100m
memory: 200Mi
cpu: 200m
memory: 500Mi
volumeMounts:
- name: varlog
mountPath: /var/log
Expand Down

0 comments on commit 75f6bfd

Please sign in to comment.