Armand Masseau
05/21/2025, 2:04 PMRashida Kanchwala
05/21/2025, 3:15 PMArmand Masseau
05/21/2025, 3:16 PMYolan Honoré-Rougé
05/21/2025, 7:18 PMJuan Luis
05/21/2025, 9:42 PMArmand Masseau
06/11/2025, 1:08 PMRashida Kanchwala
06/11/2025, 1:50 PMArmand Masseau
06/11/2025, 3:42 PMArmand Masseau
06/17/2025, 9:48 AMAnkita Katiyar
06/17/2025, 1:57 PMsettings.py
?Armand Masseau
06/17/2025, 2:40 PMAnkita Katiyar
06/18/2025, 9:48 AMglobal_settings
variable after? I think it’s the creation of the KedroSession
that is causing some confusion with the environments. The custom resolvers are meant to be defined in the settings.py
but then used in the catalog/parameters yaml files. https://docs.kedro.org/en/stable/configuration/advanced_configuration.html#how-to-use-resolvers-in-the-omegaconfigloader Maybe the creation of the session and the loading of the config in settings.py
is not needed?Armand Masseau
06/18/2025, 12:13 PMArmand Masseau
06/23/2025, 12:55 PMAnkita Katiyar
06/23/2025, 12:58 PMoc.env
resolver into your parameters https://docs.kedro.org/en/0.19.14/configuration/advanced_configuration.html#how-to-load-credentials-through-environment-variables
You’d have to activate the oc.env
resolver in your settings.py
from omegaconf.resolvers import oc
CONFIG_LOADER_ARGS = {
"base_env": "base",
"default_run_env": "local",
"custom_resolvers": {
"oc.env": oc.env,
}
}
Armand Masseau
06/24/2025, 8:29 AM