fluent / fluent-operator

Operate Fluent Bit and Fluentd in the Kubernetes way - Previously known as FluentBit Operator
Apache License 2.0
578 stars 246 forks source link

help request: how to expose a custom UDP port #1243

Closed tanzerm closed 2 months ago

tanzerm commented 2 months ago

Describe the issue

I want to send logs from several appliances into Kubernetes. Therefore, I configured a ClusterInput:

apiVersion: fluentbit.fluent.io/v1alpha2
kind: ClusterInput
metadata:
  namespace: fluent
  name: fw-input
  labels:
    fluentbit.fluent.io/enabled: "true"
    fluentbit.fluent.io/mode: "fluentbit-only"
spec:
  customPlugin:
    config: |
      Name    udp
      Listen      0.0.0.0
      Port        12222
      Chunk_Size  32
      Buffer_Size 64
      Format      none
      Tag         firewall.*

But the pods don't expose the specified port, and no related Kubernetes service is created.

How did you install fluent operator?

installed via helm chart: fluent-operator:3.0.0

Additional context

No response

cw-Guo commented 2 months ago

service & port are either created via the helm chart template or in the operator.

unfortunately, both of them have no idea about any customPlugin.

You can try to resolve this issue by: