We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The values.yaml file has:
charts/charts/graylog/values.yaml
Line 70 in a721b83
Line 83 in a721b83
However, these need to be arrays:
env: [] envRaw: []
They are unusable as objects.
e.g., with these values:
graylog: envRaw: - name: TEST value: test
We get the errors:
cannot overwrite table with non table for envRaw (map[])"
The text was updated successfully, but these errors were encountered:
creating the env vars like so works for me:
env: GRAYLOG_OUTPUT_BATCH_SIZE: 8000 GRAYLOG_OUTPUTBUFFER_PROCESSORS: 6 GRAYLOG_PROCESSBUFFER_PROCESSORS: 10
In my opinion list is more accurate, but its work anyway :)
Sorry, something went wrong.
creating the env vars like so works for me: env: GRAYLOG_OUTPUT_BATCH_SIZE: 8000 GRAYLOG_OUTPUTBUFFER_PROCESSORS: 6 GRAYLOG_PROCESSBUFFER_PROCESSORS: 10 In my opinion list is more accurate, but its work anyway :)
This might be true for static environment variable definitions, but won't work with dynamic ones, e.g. like so:
env: - name: POD_NAME valueFrom: fieldRef: fieldPath: metadata.name
No branches or pull requests
The values.yaml file has:
charts/charts/graylog/values.yaml
Line 70 in a721b83
charts/charts/graylog/values.yaml
Line 83 in a721b83
However, these need to be arrays:
They are unusable as objects.
e.g., with these values:
We get the errors:
The text was updated successfully, but these errors were encountered: