-
Notifications
You must be signed in to change notification settings - Fork 70
Different set of config data passed from NuleculeBase config to providers. #331
Comments
@rtnpro - I'm interested in your take on this. |
UPDATE Seems it was a testing error for configuration. Either way, still want to discuss whether we want to pass the entire configuration to provider. |
@charliedrage Will the above solve this issue? |
@rtnpro Yup, that will. We will however have to change the Nulecule spec to conform to this. We should label this issue for after GA / Beta-3. |
Agreed 👍 |
@dustymabe With the persistent storage implementation we will need a way to pass persistent storage information to the provider (if we go the way of having a |
Hey @rtnpro you are working on a Config class for this. Seems that this issue would be fixed upon the completion of it, I'm going to assign this to you for now. :) |
atomicapp master:
cdk2-beta3-rc1:
See
Given config:
line.Now... for future integration and more information, I believe we should pass the entire config (including "general"), which is what cdk2-beta3-rc1 is doing right now. If we perhaps happen to include more variables in the future, we wouldn't want to do another PR to fix and perhaps break integration.
This will however change the:
self.namespace = self.config.get("namespace")
to
self.namespace = self.config["general"]["namespace"]
In all providers.
The text was updated successfully, but these errors were encountered: