Skip to content

Commit c3a211f

Browse files
committed
Fix: expose image config for fluentd-forwarder
1 parent e172f19 commit c3a211f

File tree

3 files changed

+16
-2
lines changed

3 files changed

+16
-2
lines changed

config/common-config.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -267,6 +267,9 @@ fluentd:
267267
affinity: {}
268268

269269
forwarder:
270+
image:
271+
repository: ghcr.io/elastisys/fluentd
272+
tag: v4.3.9-ck8s1
270273
buffer:
271274
totalLimitSize: 20GB
272275

config/schemas/config.yaml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4983,6 +4983,17 @@ properties:
49834983
type: object
49844984
additionalProperties: false
49854985
properties:
4986+
image:
4987+
title: Fluentd Forwarder Image Config
4988+
description: Configure Fluentd forwarder image repository and tag
4989+
type: object
4990+
properties:
4991+
repository:
4992+
default: ghcr.io/elastisys/fluentd
4993+
type: string
4994+
tag:
4995+
default: v4.3.9-ck8s1
4996+
type: string
49864997
buffer:
49874998
$ref: '#/$defs/fluentdBuffer'
49884999
livenessThresholdSeconds:

helmfile.d/values/fluentd/forwarder-common.yaml.gotmpl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ image:
44
# This is our own fork-image (https://github.com/elastisys/fluentd-elasticsearch).
55
# This can later be replaced with the original image (https://github.com/monotek/fluentd-elasticsearch) when our changes is merged.
66
# This image is included in falco k8s_containers and user_known_package_manager_in_container macros
7-
repository: ghcr.io/elastisys/fluentd
8-
tag: v4.3.9-ck8s1
7+
repository: {{ .Values.fluentd.forwarder.image.repository }}
8+
tag: {{ .Values.fluentd.forwarder.image.tag }}
99

1010
serviceMonitor:
1111
enabled: true

0 commit comments

Comments
 (0)