-
Notifications
You must be signed in to change notification settings - Fork 741
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
Fix helm templates so that we don't require a configmap. #176
Conversation
* If no --cloud isn't specified then we shouldn't specify controller_config_file * Add options to allow the user to specify the name of a config map if they want to set the configmap themselves. * The options are set so that specifying a custom configmap overrides the value selected by setting cloud so that the two options can be used together.
Testing: no cloud
Testing: set cloud
Testing: override the config map
|
@DjangoPeng @jianzi123 does this fix your issues? |
@jlewi I have fixed the issues, but I don't know how it to do, such as how to use my own code. |
I have set a configmap according to my bare metal environment. I'd like to check whether the PR fix my issue on next Monday. |
@jianzi123 How did you fix the issue? |
@jlewi I used |
@jianzi123 @DjangoPeng if I don't see any comments tomorrow, I'll go ahead and merge this. |
@jlewi Go head please. I think this PR is helpful and the implementation is not bad. |
Hi, @jlewi I have a question about the implementation. What happened if no config volume is mounted and controller_config_file isn't set. AFAIK there is a necessary config |
@gaocegege You raise a good point about
|
Opened issue #188 to figure out what to do about empty |
SGTM :) |
If no --cloud isn't specified then we shouldn't specify
controller_config_file
Add options to allow the user to specify the name of a config map
if they want to set the configmap themselves.
The options are set so that specifying a custom configmap overrides
the value selected by setting cloud so that the two options can be used
together.
Fixes #175