-
Notifications
You must be signed in to change notification settings - Fork 226
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
Setting up custom config #508
Comments
You can achieve this by setting this config: bookkeeper:
configData:
# this configures journalWriteData=false in /pulsar/conf/bookkeeper.conf
PULSAR_PREFIX_journalWriteData: "false" journalWriteData is documented in the default config file of Bookkeeper. You will need to add pulsar-helm-chart/charts/pulsar/templates/bookkeeper-statefulset.yaml Lines 174 to 176 in 023f902
The chart will create a separate journal volume. If you want to get rid of that, you can use this config: bookkeeper:
volumes:
# optional step
# this prevents the chart from creating a volume for the journal, don't set this for existing deployments
useSingleCommonVolume: true
common:
name: common
# size for common volume (only ledgers when journals are missing)
size: 60Gi |
@danielnaumau Would you like to contribute improvements to the README to document how to configure specific configuration options? |
Is your feature request related to a problem? Please describe.
I want to disable writing to a journal and I don't see how it can be done with helm charts. As far as I understood I need to do it here https://bookkeeper.apache.org/docs/reference/config/ but I don't see any ways how to create custom configs in pulsar helm charts.
Describe the solution you'd like
It would be good to show some examples in documentation how it can be done
Describe alternatives you've considered
Maybe I can use pulsar admin to disable writing to a journal but I'd rather know how to create custom configs using helm charts.
The text was updated successfully, but these errors were encountered: