helm-charts icon indicating copy to clipboard operation
helm-charts copied to clipboard

[fluentd] helm chart - ability to specify nodeport manually

Open butschi84 opened this issue 2 years ago • 0 comments

Situation

  • I like to setup fluentd on kubernetes using the helm chart so it can receive rsyslog
  • In our environment, I have to setup a loadbalancer (external of the k8s cluster) which forwards traffic to my k8s cluster to a certain nodeport
  • in the fluentd helm chart, there seems to be no possiblity to specify a port number for the nodeport service manually (see here)

Expectation

In the values file I like to be able to specify the nodeport manually to a specific value like so:

service:
  enabled: true
  type: "NodePort"
  ports: 
   - name: "forwarder"
     protocol: TCP
     containerPort: 24224
     nodePort: 32101

butschi84 avatar Apr 19 '24 10:04 butschi84