From c7bea52849e52d0171a2c2efafc8ddce6125f14c Mon Sep 17 00:00:00 2001 From: Alek Westover Date: Fri, 16 Jun 2023 16:58:13 -0400 Subject: [PATCH] adding command line argument --- compute_tools/src/bin/compute_ctl.rs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/compute_tools/src/bin/compute_ctl.rs b/compute_tools/src/bin/compute_ctl.rs index 6c2880ba8a..276fc474bd 100644 --- a/compute_tools/src/bin/compute_ctl.rs +++ b/compute_tools/src/bin/compute_ctl.rs @@ -345,6 +345,12 @@ fn cli() -> clap::Command { .long("control-plane-uri") .value_name("CONTROL_PLANE_API_BASE_URI"), ) + .arg( + Arg::new("remote-ext-config") + .short('r') + .long("remote-ext-config") + .value_name("REMOTE_EXT_CONFIG"), + ) } #[test]