From bd5d1a36f019746bd3331d0e12bf14ba12da5b81 Mon Sep 17 00:00:00 2001 From: Tanisha Payne Date: Fri, 8 Oct 2021 11:44:45 -0400 Subject: [PATCH 1/2] priority flag added to ssh command --- lib/vmfloaty.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/vmfloaty.rb b/lib/vmfloaty.rb index d7e2196..4abba2d 100644 --- a/lib/vmfloaty.rb +++ b/lib/vmfloaty.rb @@ -469,6 +469,7 @@ def run # rubocop:disable Metrics/AbcSize c.option '--user STRING', String, 'User to authenticate with' c.option '--token STRING', String, 'Token for pooler service' c.option '--notoken', 'Makes a request without a token' + c.option '--priority STRING', 'Priority for supported backends(ABS) (High(1), Medium(2), Low(3))' c.action do |args, options| verbose = options.verbose || config['verbose'] service = Service.new(options, config) From 3c3623689ada9eb46ef26425eb23b8a1d6e53aa1 Mon Sep 17 00:00:00 2001 From: Tanisha Payne Date: Tue, 12 Oct 2021 10:39:06 -0400 Subject: [PATCH 2/2] ondemand added to ssh command --- lib/vmfloaty.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/vmfloaty.rb b/lib/vmfloaty.rb index 4abba2d..846bf4d 100644 --- a/lib/vmfloaty.rb +++ b/lib/vmfloaty.rb @@ -470,6 +470,7 @@ def run # rubocop:disable Metrics/AbcSize c.option '--token STRING', String, 'Token for pooler service' c.option '--notoken', 'Makes a request without a token' c.option '--priority STRING', 'Priority for supported backends(ABS) (High(1), Medium(2), Low(3))' + c.option '--ondemand', 'Requested vms are provisioned upon receival of the request, tracked by a request ID' c.action do |args, options| verbose = options.verbose || config['verbose'] service = Service.new(options, config)