-
Notifications
You must be signed in to change notification settings - Fork 279
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
Add env vars for seed provider #39
Conversation
The failure on Travis is exactly the same one which I had locally yesterday (#38), but it works for me locally now. Any ideas? Maybe Docker version? |
Why are the tests still failing? Why is seed_provider null? It's not null on my local machine. |
Here's the proof:
|
Finally CI is passing successfully. @yosifkit, may I ask you to review and merge? |
I'm a bit on the fence on this. Won't most seed providers require more configuration? It won't be simple to support arbitrary This could be accomplished by a user supplying their own config with the provider and its parameters either through |
@yosifkit, I see you point. Could you please explain in more detail how I could set a custom seed_provider? |
Sure! 😄 Make a local copy of the cassandra.yaml and modify the seed_provider. Then you have two options:
|
Ah, now I understand what you mean with local. |
I'm sorry, but honestly if we're going to do anything more with environment variables it would likely be in the opposite direction (which we won't do due to the backwards compatibility implications) -- modifying a YAML file via shell script is very fragile, and setting complex configuration in this way is not great. For custom configuration, the only/best recommendation is to provide an appropriate Closing in favor of #160 + docker-library/docs#1317. |
No description provided.