From 14f59188f67c361870a623028ca6d83b9e860c91 Mon Sep 17 00:00:00 2001 From: Eric Engestrom Date: Tue, 12 Dec 2023 11:53:52 +0000 Subject: [PATCH] ci/b2c: drop unused --volume and --mount-volume Part-of: --- .gitlab-ci/b2c/generate_b2c.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.gitlab-ci/b2c/generate_b2c.py b/.gitlab-ci/b2c/generate_b2c.py index 60194d4d95f..d2f11c40d3a 100755 --- a/.gitlab-ci/b2c/generate_b2c.py +++ b/.gitlab-ci/b2c/generate_b2c.py @@ -85,10 +85,6 @@ values['timeout_retries'] = args.timeout_retries if len(args.job_volume_exclusions) > 0: exclusions = args.job_volume_exclusions.split(",") values['job_volume_exclusions'] = [excl for excl in exclusions if len(excl) > 0] -if args.volume is not None: - values['volumes'] = args.volume -if args.mount_volume is not None: - values['mount_volumes'] = args.mount_volume values['working_dir'] = args.working_dir assert(len(args.local_container) > 0)