Hello everyone! I recently updated Kedro to versio...
# questions
l
Hello everyone! I recently updated Kedro to version 0.19, transitioning from TemplatedConfigLoader to OmegaConf. Previously, with TemplatedConfigLoader, I had a straightforward setup where I defined a parameter "gcp_project" in "base/parameters/config.yml" and used it in my catalog.yml. To achieve this, I simply set the following in settings.py:
Copy code
CONFIG_LOADER_ARGS={"globals_pattern": "*/**"}
And in catalog.yml:
Copy code
gcp_project: ${gcp_project}
This setup worked seamlessly. However, with OmegaConf, I'm encountering an issue. When attempting the same approach, I receive the following error:
Copy code
InterpolationKeyError: Interpolation key 'gcp_project' not found
Has anyone faced a similar challenge or knows how I can resolve this? Appreciate any guidance or suggestions on making this work with OmegaConf. Thank you!
n
It's likely you need to update the
globals_pattern
argument too!
*/**
seems too generic