From 0efc7eb230e76337a9deafbcdf02571c8829f919 Mon Sep 17 00:00:00 2001 From: fred3m Date: Sat, 19 Oct 2024 15:31:40 -0700 Subject: [PATCH 1/2] Update paths to workspace save directory on USDF and the summit. --- scripts/rubintv_worker.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/rubintv_worker.py b/scripts/rubintv_worker.py index 1352cd0..12f83d3 100644 --- a/scripts/rubintv_worker.py +++ b/scripts/rubintv_worker.py @@ -39,8 +39,8 @@ sdm_schemas_path = os.path.join(os.path.expandvars("$SDM_SCHEMAS_DIR"), "yml") prod_credentials_path = os.path.join("/etc/secrets", "postgres-credentials.txt") test_credentials_path = os.path.join(os.path.expanduser("~"), ".lsst", "postgres-credentials.txt") -summit_users_path = "/usr/share/worker/configs" -usdf_users_path = "/usr/share/worker/configs" +summit_users_path = "/project/rubintv/ddv-config" +usdf_users_path = "/sdf/data/rubin/shared/rubintv-ddv-config" dev_users_path = "/sdf/home/f/fred3m/u/data/dev_users" From 15d41d81119b3fc0d2ae305c20c3cc46405468ff Mon Sep 17 00:00:00 2001 From: fred3m Date: Mon, 21 Oct 2024 12:24:13 -0700 Subject: [PATCH 2/2] Fix pod workspace paths --- scripts/rubintv_worker.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/rubintv_worker.py b/scripts/rubintv_worker.py index 12f83d3..14b7444 100644 --- a/scripts/rubintv_worker.py +++ b/scripts/rubintv_worker.py @@ -39,8 +39,8 @@ sdm_schemas_path = os.path.join(os.path.expandvars("$SDM_SCHEMAS_DIR"), "yml") prod_credentials_path = os.path.join("/etc/secrets", "postgres-credentials.txt") test_credentials_path = os.path.join(os.path.expanduser("~"), ".lsst", "postgres-credentials.txt") -summit_users_path = "/project/rubintv/ddv-config" -usdf_users_path = "/sdf/data/rubin/shared/rubintv-ddv-config" +summit_users_path = "/var/ddv-config" +usdf_users_path = "/var/ddv-config" dev_users_path = "/sdf/home/f/fred3m/u/data/dev_users"