Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Opensearch extraOutputs values for the aws-for-fluent-bit chart are never retrieved #955

Open
jphilaire opened this issue Jun 7, 2023 · 0 comments · May be fixed by #1168
Open

Opensearch extraOutputs values for the aws-for-fluent-bit chart are never retrieved #955

jphilaire opened this issue Jun 7, 2023 · 0 comments · May be fixed by #1168
Labels
bug Something isn't working

Comments

@jphilaire
Copy link

Describe the bug
We tried to configure opensearch extraOutputs for the aws-for-fluent-bit chart but the specified values are never retrieved.

It seems that there is a typo in the configmap.yaml file (stable/aws-for-fluent-bit/templates/configmap.yaml) at line 451.

The line is:

{{ .Values.opensearch.extraOutputsIndent_8 }}

it should be:

{{ .Values.opensearch.extraOutputs | Indent 8 }}

Steps to reproduce
In the helm values file for the opensearch output of the aws-for-fluent-bit chart, we have the following configuration:

opensearch:
  enabled: true
  match:   "*"
  host:    <HOSTNAME>
  port:    "443"
  tls:     "on"
  ...
  extraOutputs: |
    tls.verify off
    tls.debug  4

Expected outcome
In the generated fluent-bit.yaml configuration file, we should see something like this:

[OUTPUT]
    Name        opensearch
    Match       *
    Host        <HOSTNAME>
    Port        443
    tls         on
    ...
    tls.verify  off
    tls.debug   4

Environment

  • Chart name: aws-for-fluent-bit
  • Chart version: 2.28.4
  • Kubernetes version: 1.24
  • Using EKS (yes/no), if so version? eks.6

Additional Context:

@jphilaire jphilaire added the bug Something isn't working label Jun 7, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
1 participant