I want to dynamically alter pipelines based on the configuration provided. Is there possibility to pass configuration based on the environment to the register_pipelines()
or to the create_pipeline()
functions?
I've read the documentation about configuration (https://kedro.readthedocs.io/en/stable/kedro_project_setup/configuration.html) but there is not specified how can one get the necessary information to use ConfigLoader it (mainly environment) that was used in kedro run --env=
command.
E.g. Similarly when creating nodes, is it possible to create pipelines with create_pipeline("params:model_params")
?