diff --git a/giant/analysis/condor.py b/giant/analysis/condor.py index 91c0023..85ded33 100644 --- a/giant/analysis/condor.py +++ b/giant/analysis/condor.py @@ -306,7 +306,7 @@ class SubmitConfig: run_dir: Path accounting_group: str repo_dir: Path - docker_image: str = "mschnepf/slc7-condocker" + docker_image: str = "cverstege/alma9-gridjob" request_memory_mb: int = 4096 request_cpus: int = 1 remote: bool = False # +RemoteJob (grid I/O) vs ProvidesETPResources (local files) diff --git a/giant/cli.py b/giant/cli.py index 48b738a..fca9ef2 100644 --- a/giant/cli.py +++ b/giant/cli.py @@ -1248,7 +1248,7 @@ def analyze_submit( ] = None, docker_image: Annotated[ str, typer.Option("--docker-image") - ] = "mschnepf/slc7-condocker", + ] = "cverstege/alma9-gridjob", request_memory: Annotated[int, typer.Option("--request-memory", help="MB")] = 4096, remote: Annotated[ bool, diff --git a/tests/test_condor.py b/tests/test_condor.py index 89838a8..fd175b6 100644 --- a/tests/test_condor.py +++ b/tests/test_condor.py @@ -178,7 +178,7 @@ def test_write_submit_description(tmp_path: Path): cfg = SubmitConfig(run_dir=run_dir, accounting_group="cms", repo_dir=tmp_path) txt = write_submit(cfg).read_text() assert "universe = docker" in txt - assert "docker_image = mschnepf/slc7-condocker" in txt + assert "docker_image = cverstege/alma9-gridjob" in txt assert "requirements = TARGET.ProvidesETPResources" in txt assert "accounting_group = cms" in txt assert "+RequestWalltime = $(walltime)" in txt