Marek Wiewiórka
Marek Wiewiórka
Hi All, we at ING are working integrating SAC with our internal data analytics platform where Atlas is one of our main components for storing various kinds of metadata, metrics,...
#### What this PR does / why we need it: Adding possibility of templating env variables such as BACKEND_STORE_URI, DEFAULT_ARTIFACT_ROOT, etc. #### Which issue this PR fixes *(optional, in `fixes...
Steps to reproduce: 1. install kedro==0.18.0 2. Run `kedro airflow-k8s compile`: ``` bash-3.2$ kedro airflow-k8s -e pipelines compile Traceback (most recent call last): File "/Users/mwiewior/job/projects/PKOBP/git/kedro-airflow-k8s/venv/kedro/bin/kedro", line 8, in sys.exit(main()) File...
```bash bash-3.2$ echo $KEDRO_ENV pipelines bash-3.2$ kedro airflow-k8s compile No files found in ['/XXX/git/spaceflights-in-airflow/conf/base', '/XXX/git/spaceflights-in-airflow/conf/local'] matching the glob pattern(s): ['airflow-k8s*'] bash-3.2$ kedro airflow-k8s -e pipelines compile ### works as expected...
```python def is_mlflow_enabled() -> bool: try: import mlflow # NOQA from kedro_mlflow.framework.context import get_mlflow_config # NOQA return True except ImportError: return False ``` alway throws exception since `context` package has...