diff --git a/README.md b/README.md index 8c347f0..5d81a9c 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ csm-orc run code/run_templates/minimal/run.json ## Deploy -Publish a new simulator image to both registries used by Sphinx: +Publish the new simulator image to the desired registries: ``` az login @@ -43,4 +43,7 @@ csm docker release --tag x.y.z --registry acrwarpwaadxdevdlrivo.azurecr.io/ az acr login -n acrsphinxd38ygr csm docker release --tag x.y.z --registry acrsphinxd38ygr.azurecr.io/ + +az acr login -n devregistryvela +csm docker release --tag x.y.z --registry devregistryvela.azurecr.io/ ``` diff --git a/code/run_templates/etl_instance_generator/etl.py b/code/run_templates/etl_instance_generator/etl.py index f2d64ff..92da5d0 100644 --- a/code/run_templates/etl_instance_generator/etl.py +++ b/code/run_templates/etl_instance_generator/etl.py @@ -72,8 +72,8 @@ def main(): path_tmp_dir / "Customer.csv", ] path_list_db = [path_tmp_dir / "Bar.csv"] - DatasetApi().update_dataset_parts( - target_dataset_id, path_list_file, path_list_db, replace=True + DatasetApi().upload_dataset_parts( + target_dataset_id, path_list_file, path_list_db, replace_existing=True ) LOGGER.info("ETL Run finished")