forked from Azure/batch-shipyard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshipyard.py
executable file
·921 lines (791 loc) · 27.7 KB
/
shipyard.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
#!/usr/bin/env python3
# Copyright (c) Microsoft Corporation
#
# All rights reserved.
#
# MIT License
#
# Permission is hereby granted, free of charge, to any person obtaining a
# copy of this software and associated documentation files (the "Software"),
# to deal in the Software without restriction, including without limitation
# the rights to use, copy, modify, merge, publish, distribute, sublicense,
# and/or sell copies of the Software, and to permit persons to whom the
# Software is furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
# DEALINGS IN THE SOFTWARE.
# compat imports
from __future__ import absolute_import, division, print_function
from builtins import ( # noqa
bytes, dict, int, list, object, range, str, ascii, chr, hex, input,
next, oct, open, pow, round, super, filter, map, zip)
# stdlib imports
import json
import logging
try:
import pathlib2 as pathlib
except ImportError:
import pathlib
# non-stdlib imports
import click
# local imports
import convoy.fleet
import convoy.settings
import convoy.util
# create logger
logger = logging.getLogger('shipyard')
# global defines
_CONTEXT_SETTINGS = dict(help_option_names=['-h', '--help'])
class CliContext(object):
"""CliContext class: holds context for CLI commands"""
def __init__(self):
"""Ctor for CliContext"""
self.verbose = False
self.yes = False
self.config = None
self.batch_client = None
self.blob_client = None
self.queue_client = None
self.table_client = None
self.keyvault_client = None
# aad/keyvault options
self.keyvault_uri = None
self.keyvault_credentials_secret_id = None
self.aad_directory_id = None
self.aad_application_id = None
self.aad_auth_key = None
self.aad_user = None
self.aad_password = None
self.aad_cert_private_key = None
self.add_cert_thumbprint = None
def initialize(self, creds_only=False, no_config=False):
# type: (CliContext, bool, bool) -> None
"""Initialize context
:param CliContext self: this
:param bool creds_only: credentials only initialization
:param bool no_config: do not configure context
"""
self._read_credentials_config()
self.keyvault_client = convoy.fleet.create_keyvault_client(
self, self.config)
del self.aad_directory_id
del self.aad_application_id
del self.aad_auth_key
del self.aad_user
del self.aad_password
del self.aad_cert_private_key
del self.aad_cert_thumbprint
self.config = None
self._init_config(creds_only)
if no_config:
return
if not creds_only:
clients = convoy.fleet.initialize(self.config)
self._set_clients(*clients)
def _read_json_file(self, json_file):
# type: (CliContext, pathlib.Path) -> None
"""Read a json file into self.config, while checking for invalid
JSON and returning an error that makes sense if ValueError
:param CliContext self: this
:param pathlib.Path json_file: json file to load
"""
try:
with json_file.open('r') as f:
if self.config is None:
self.config = json.load(f)
else:
self.config = convoy.util.merge_dict(
self.config, json.load(f))
except ValueError:
raise ValueError(
('Detected invalid JSON in file: {}. Please ensure the JSON '
'is valid and is encoded UTF-8 without BOM.'.format(
json_file)))
def _read_credentials_config(self):
# type: (CliContext) -> None
"""Read credentials config file only
:param CliContext self: this
"""
# use configdir if available
if self.configdir is not None and self.json_credentials is None:
self.json_credentials = pathlib.Path(
self.configdir, 'credentials.json')
if (self.json_credentials is not None and
not isinstance(self.json_credentials, pathlib.Path)):
self.json_credentials = pathlib.Path(self.json_credentials)
if self.json_credentials.exists():
self._read_json_file(self.json_credentials)
def _init_config(self, creds_only=False):
# type: (CliContext, bool) -> None
"""Initializes configuration of the context
:param CliContext self: this
:param bool creds_only: credentials only initialization
"""
# use configdir if available
if self.configdir is not None:
if self.json_credentials is None:
self.json_credentials = pathlib.Path(
self.configdir, 'credentials.json')
if self.json_config is None:
self.json_config = pathlib.Path(
self.configdir, 'config.json')
if self.json_pool is None:
self.json_pool = pathlib.Path(self.configdir, 'pool.json')
if self.json_jobs is None:
self.json_jobs = pathlib.Path(self.configdir, 'jobs.json')
# check for required json files
if (self.json_credentials is not None and
not isinstance(self.json_credentials, pathlib.Path)):
self.json_credentials = pathlib.Path(self.json_credentials)
if not creds_only:
if self.json_config is None:
raise ValueError('config json was not specified')
elif not isinstance(self.json_config, pathlib.Path):
self.json_config = pathlib.Path(self.json_config)
if self.json_pool is None:
raise ValueError('pool json was not specified')
elif not isinstance(self.json_pool, pathlib.Path):
self.json_pool = pathlib.Path(self.json_pool)
# fetch credentials from keyvault, if json file is missing
kvcreds = None
if self.json_credentials is None or not self.json_credentials.exists():
kvcreds = convoy.fleet.fetch_credentials_json_from_keyvault(
self.keyvault_client, self.keyvault_uri,
self.keyvault_credentials_secret_id)
# read credentials json, perform special keyvault processing if
# required sections are missing
if kvcreds is None:
self._read_json_file(self.json_credentials)
kv = convoy.settings.credentials_keyvault(self.config)
self.keyvault_uri = self.keyvault_uri or kv.keyvault_uri
self.keyvault_credentials_secret_id = (
self.keyvault_credentials_secret_id or
kv.keyvault_credentials_secret_id
)
if self.keyvault_credentials_secret_id is not None:
try:
convoy.settings.credentials_batch(self.config)
if len(list(convoy.settings.iterate_storage_credentials(
self.config))) == 0:
raise KeyError()
except KeyError:
# fetch credentials from keyvault
self.config = \
convoy.fleet.fetch_credentials_json_from_keyvault(
self.keyvault_client, self.keyvault_uri,
self.keyvault_credentials_secret_id)
else:
self.config = kvcreds
del kvcreds
del self.keyvault_credentials_secret_id
# parse any keyvault secret ids from credentials
convoy.fleet.fetch_secrets_from_keyvault(
self.keyvault_client, self.config)
# read rest of config files
if not creds_only:
self._read_json_file(self.json_config)
self._read_json_file(self.json_pool)
if self.json_jobs is not None:
if not isinstance(self.json_jobs, pathlib.Path):
self.json_jobs = pathlib.Path(self.json_jobs)
if self.json_jobs.exists():
self._read_json_file(self.json_jobs)
# set internal config kv pairs
self.config['_verbose'] = self.verbose
self.config['_auto_confirm'] = self.yes
if self.verbose:
logger.debug('config:\n' + json.dumps(self.config, indent=4))
# free mem
del self.json_credentials
del self.json_config
del self.json_pool
del self.json_jobs
del self.verbose
del self.yes
def _set_clients(
self, batch_client, blob_client, queue_client, table_client):
"""Sets clients for the context"""
self.batch_client = batch_client
self.blob_client = blob_client
self.queue_client = queue_client
self.table_client = table_client
# create a pass decorator for shared context between commands
pass_cli_context = click.make_pass_decorator(CliContext, ensure=True)
def _verbose_option(f):
def callback(ctx, param, value):
clictx = ctx.ensure_object(CliContext)
clictx.verbose = value
return value
return click.option(
'-v', '--verbose',
expose_value=False,
is_flag=True,
help='Verbose output',
callback=callback)(f)
def _confirm_option(f):
def callback(ctx, param, value):
clictx = ctx.ensure_object(CliContext)
clictx.yes = value
return value
return click.option(
'-y', '--yes',
expose_value=False,
is_flag=True,
help='Assume yes for all confirmation prompts',
callback=callback)(f)
def _azure_keyvault_uri_option(f):
def callback(ctx, param, value):
clictx = ctx.ensure_object(CliContext)
clictx.keyvault_uri = value
return value
return click.option(
'--keyvault-uri',
expose_value=False,
envvar='SHIPYARD_KEYVAULT_URI',
help='Azure KeyVault URI',
callback=callback)(f)
def _azure_keyvault_credentials_secret_id_option(f):
def callback(ctx, param, value):
clictx = ctx.ensure_object(CliContext)
clictx.keyvault_credentials_secret_id = value
return value
return click.option(
'--keyvault-credentials-secret-id',
expose_value=False,
envvar='SHIPYARD_KEYVAULT_CREDENTIALS_SECRET_ID',
help='Azure KeyVault credentials secret id',
callback=callback)(f)
def _aad_directory_id_option(f):
def callback(ctx, param, value):
clictx = ctx.ensure_object(CliContext)
clictx.aad_directory_id = value
return value
return click.option(
'--aad-directory-id',
expose_value=False,
envvar='SHIPYARD_AAD_DIRECTORY_ID',
help='Azure Active Directory directory (tenant) id',
callback=callback)(f)
def _aad_application_id_option(f):
def callback(ctx, param, value):
clictx = ctx.ensure_object(CliContext)
clictx.aad_application_id = value
return value
return click.option(
'--aad-application-id',
expose_value=False,
envvar='SHIPYARD_AAD_APPLICATION_ID',
help='Azure Active Directory application (client) id',
callback=callback)(f)
def _aad_auth_key_option(f):
def callback(ctx, param, value):
clictx = ctx.ensure_object(CliContext)
clictx.aad_auth_key = value
return value
return click.option(
'--aad-auth-key',
expose_value=False,
envvar='SHIPYARD_AAD_AUTH_KEY',
help='Azure Active Directory authentication key',
callback=callback)(f)
def _aad_user_option(f):
def callback(ctx, param, value):
clictx = ctx.ensure_object(CliContext)
clictx.aad_user = value
return value
return click.option(
'--aad-user',
expose_value=False,
envvar='SHIPYARD_AAD_USER',
help='Azure Active Directory user',
callback=callback)(f)
def _aad_password_option(f):
def callback(ctx, param, value):
clictx = ctx.ensure_object(CliContext)
clictx.aad_password = value
return value
return click.option(
'--aad-password',
expose_value=False,
envvar='SHIPYARD_AAD_PASSWORD',
help='Azure Active Directory password',
callback=callback)(f)
def _aad_cert_private_key_option(f):
def callback(ctx, param, value):
clictx = ctx.ensure_object(CliContext)
clictx.aad_cert_private_key = value
return value
return click.option(
'--aad-cert-private-key',
expose_value=False,
envvar='SHIPYARD_AAD_CERT_PRIVATE_KEY',
help='Azure Active Directory private key for X.509 certificate',
callback=callback)(f)
def _aad_cert_thumbprint_option(f):
def callback(ctx, param, value):
clictx = ctx.ensure_object(CliContext)
clictx.aad_cert_thumbprint = value
return value
return click.option(
'--aad-cert-thumbprint',
expose_value=False,
envvar='SHIPYARD_AAD_CERT_THUMBPRINT',
help='Azure Active Directory certificate SHA1 thumbprint',
callback=callback)(f)
def _configdir_option(f):
def callback(ctx, param, value):
clictx = ctx.ensure_object(CliContext)
clictx.configdir = value
return value
return click.option(
'--configdir',
expose_value=False,
envvar='SHIPYARD_CONFIGDIR',
help='Configuration directory where all configuration files can be '
'found. Each json config file must be named exactly the same as the '
'regular switch option, e.g., pool.json for --pool. Individually '
'specified config options take precedence over this option.',
callback=callback)(f)
def _credentials_option(f):
def callback(ctx, param, value):
clictx = ctx.ensure_object(CliContext)
clictx.json_credentials = value
return value
return click.option(
'--credentials',
expose_value=False,
envvar='SHIPYARD_CREDENTIALS_JSON',
help='Credentials json config file',
callback=callback)(f)
def _config_option(f):
def callback(ctx, param, value):
clictx = ctx.ensure_object(CliContext)
clictx.json_config = value
return value
return click.option(
'--config',
expose_value=False,
envvar='SHIPYARD_CONFIG_JSON',
help='Global json config file',
callback=callback)(f)
def _pool_option(f):
def callback(ctx, param, value):
clictx = ctx.ensure_object(CliContext)
clictx.json_pool = value
return value
return click.option(
'--pool',
expose_value=False,
envvar='SHIPYARD_POOL_JSON',
help='Pool json config file',
callback=callback)(f)
def _jobs_option(f):
def callback(ctx, param, value):
clictx = ctx.ensure_object(CliContext)
clictx.json_jobs = value
return value
return click.option(
'--jobs',
expose_value=False,
envvar='SHIPYARD_JOBS_JSON',
help='Jobs json config file',
callback=callback)(f)
def common_options(f):
f = _aad_cert_thumbprint_option(f)
f = _aad_cert_private_key_option(f)
f = _aad_password_option(f)
f = _aad_user_option(f)
f = _aad_auth_key_option(f)
f = _aad_application_id_option(f)
f = _aad_directory_id_option(f)
f = _azure_keyvault_credentials_secret_id_option(f)
f = _azure_keyvault_uri_option(f)
f = _jobs_option(f)
f = _pool_option(f)
f = _config_option(f)
f = _credentials_option(f)
f = _configdir_option(f)
f = _verbose_option(f)
f = _confirm_option(f)
return f
@click.group(context_settings=_CONTEXT_SETTINGS)
@click.version_option(version=convoy.__version__)
@click.pass_context
def cli(ctx):
"""Batch Shipyard: Provision and Execute Docker Workloads on Azure Batch"""
pass
@cli.group()
@pass_cli_context
def storage(ctx):
"""Storage actions"""
pass
@storage.command('del')
@common_options
@pass_cli_context
def storage_del(ctx):
"""Delete Azure Storage containers used by Batch Shipyard"""
ctx.initialize()
convoy.fleet.action_storage_del(
ctx.blob_client, ctx.queue_client, ctx.table_client, ctx.config)
@storage.command('clear')
@common_options
@pass_cli_context
def storage_clear(ctx):
"""Clear Azure Storage containers used by Batch Shipyard"""
ctx.initialize()
convoy.fleet.action_storage_clear(
ctx.blob_client, ctx.queue_client, ctx.table_client, ctx.config)
@cli.group()
@pass_cli_context
def keyvault(ctx):
"""KeyVault actions"""
pass
@keyvault.command('add')
@click.argument('name')
@common_options
@pass_cli_context
def keyvault_add(ctx, name):
"""Add a credentials json as a secret to Azure KeyVault"""
ctx.initialize(creds_only=True)
convoy.fleet.action_keyvault_add(
ctx.keyvault_client, ctx.config, ctx.keyvault_uri, name)
@keyvault.command('del')
@click.argument('name')
@common_options
@pass_cli_context
def keyvault_del(ctx, name):
"""Delete a secret from Azure KeyVault"""
ctx.initialize(creds_only=True, no_config=True)
convoy.fleet.action_keyvault_del(
ctx.keyvault_client, ctx.keyvault_uri, name)
@keyvault.command('list')
@common_options
@pass_cli_context
def keyvault_list(ctx):
"""List secret ids and metadata in an Azure KeyVault"""
ctx.initialize(creds_only=True, no_config=True)
convoy.fleet.action_keyvault_list(ctx.keyvault_client, ctx.keyvault_uri)
@cli.group()
@pass_cli_context
def cert(ctx):
"""Certificate actions"""
pass
@cert.command('create')
@common_options
@pass_cli_context
def cert_create(ctx):
"""Create a certificate to use with a Batch account"""
ctx.initialize()
convoy.fleet.action_cert_create(ctx.config)
@cert.command('add')
@common_options
@pass_cli_context
def cert_add(ctx):
"""Add a certificate to a Batch account"""
ctx.initialize()
convoy.fleet.action_cert_add(ctx.batch_client, ctx.config)
@cert.command('list')
@common_options
@pass_cli_context
def cert_list(ctx):
"""List all certificates in a Batch account"""
ctx.initialize()
convoy.fleet.action_cert_list(ctx.batch_client)
@cert.command('del')
@common_options
@pass_cli_context
def cert_del(ctx):
"""Delete a certificate from a Batch account"""
ctx.initialize()
convoy.fleet.action_cert_del(ctx.batch_client, ctx.config)
@cli.group()
@pass_cli_context
def pool(ctx):
"""Pool actions"""
pass
@pool.command('listskus')
@common_options
@pass_cli_context
def pool_listskus(ctx):
"""List available VM configurations available to the Batch account"""
ctx.initialize()
convoy.fleet.action_pool_listskus(ctx.batch_client)
@pool.command('add')
@common_options
@pass_cli_context
def pool_add(ctx):
"""Add a pool to the Batch account"""
ctx.initialize()
convoy.fleet.action_pool_add(
ctx.batch_client, ctx.blob_client, ctx.queue_client,
ctx.table_client, ctx.config)
@pool.command('list')
@common_options
@pass_cli_context
def pool_list(ctx):
"""List all pools in the Batch account"""
ctx.initialize()
convoy.fleet.action_pool_list(ctx.batch_client)
@pool.command('del')
@click.option(
'--wait', is_flag=True, help='Wait for pool deletion to complete')
@common_options
@pass_cli_context
def pool_del(ctx, wait):
"""Delete a pool from the Batch account"""
ctx.initialize()
convoy.fleet.action_pool_delete(
ctx.batch_client, ctx.blob_client, ctx.queue_client,
ctx.table_client, ctx.config, wait=wait)
@pool.command('resize')
@click.option(
'--wait', is_flag=True, help='Wait for pool resize to complete')
@common_options
@pass_cli_context
def pool_resize(ctx, wait):
"""Resize a pool"""
ctx.initialize()
convoy.fleet.action_pool_resize(
ctx.batch_client, ctx.blob_client, ctx.config, wait=wait)
@pool.command('grls')
@common_options
@pass_cli_context
def pool_grls(ctx):
"""Get remote login settings for all nodes in pool"""
ctx.initialize()
convoy.fleet.action_pool_grls(ctx.batch_client, ctx.config)
@pool.command('listnodes')
@common_options
@pass_cli_context
def pool_listnodes(ctx):
"""List nodes in pool"""
ctx.initialize()
convoy.fleet.action_pool_listnodes(ctx.batch_client, ctx.config)
@pool.command('asu')
@common_options
@pass_cli_context
def pool_asu(ctx):
"""Add an SSH user to all nodes in pool"""
ctx.initialize()
convoy.fleet.action_pool_asu(ctx.batch_client, ctx.config)
@pool.command('dsu')
@common_options
@pass_cli_context
def pool_dsu(ctx):
"""Delete an SSH user from all nodes in pool"""
ctx.initialize()
convoy.fleet.action_pool_dsu(ctx.batch_client, ctx.config)
@pool.command('ssh')
@click.option(
'--cardinal',
help='Zero-based cardinal number of compute node in pool to connect to',
type=int)
@click.option(
'--nodeid', help='NodeId of compute node in pool to connect to')
@common_options
@pass_cli_context
def pool_ssh(ctx, cardinal, nodeid):
"""Interactively login via SSH to a node in the pool"""
ctx.initialize()
convoy.fleet.action_pool_ssh(
ctx.batch_client, ctx.config, cardinal, nodeid)
@pool.command('delnode')
@click.option(
'--nodeid', help='NodeId of compute node in pool to delete')
@common_options
@pass_cli_context
def pool_delnode(ctx, nodeid):
"""Delete a node from a pool"""
ctx.initialize()
convoy.fleet.action_pool_delnode(ctx.batch_client, ctx.config, nodeid)
@pool.command('udi')
@click.option(
'--image', help='Docker image[:tag] to update')
@click.option(
'--digest', help='Digest to update image to')
@common_options
@pass_cli_context
def pool_udi(ctx, image, digest):
"""Update Docker images in a pool"""
ctx.initialize()
convoy.fleet.action_pool_udi(ctx.batch_client, ctx.config, image, digest)
@cli.group()
@pass_cli_context
def jobs(ctx):
"""Jobs actions"""
pass
@jobs.command('add')
@click.option(
'--recreate', is_flag=True,
help='Recreate any completed jobs with the same id')
@click.option(
'--tail',
help='Tails the specified file of the last job and task added')
@common_options
@pass_cli_context
def jobs_add(ctx, recreate, tail):
"""Add jobs"""
ctx.initialize()
convoy.fleet.action_jobs_add(
ctx.batch_client, ctx.blob_client, ctx.keyvault_client, ctx.config,
recreate, tail)
@jobs.command('list')
@common_options
@pass_cli_context
def jobs_list(ctx):
"""List jobs"""
ctx.initialize()
convoy.fleet.action_jobs_list(ctx.batch_client, ctx.config)
@jobs.command('listtasks')
@click.option(
'--jobid', help='List tasks in the specified job id')
@common_options
@pass_cli_context
def jobs_list_tasks(ctx, jobid):
"""List tasks within jobs"""
ctx.initialize()
convoy.fleet.action_jobs_listtasks(ctx.batch_client, ctx.config, jobid)
@jobs.command('termtasks')
@click.option(
'--force', is_flag=True,
help='Force docker kill signal to task regardless of state')
@click.option(
'--jobid', help='Terminate tasks in the specified job id')
@click.option(
'--taskid', help='Terminate tasks in the specified task id')
@click.option(
'--wait', is_flag=True, help='Wait for task termination to complete')
@common_options
@pass_cli_context
def jobs_termtasks(ctx, force, jobid, taskid, wait):
"""Terminate specified tasks in jobs"""
ctx.initialize()
convoy.fleet.action_jobs_termtasks(
ctx.batch_client, ctx.config, jobid, taskid, wait, force)
@jobs.command('term')
@click.option(
'--all', is_flag=True, help='Terminate all jobs in Batch account')
@click.option(
'--jobid', help='Terminate just the specified job id')
@click.option(
'--wait', is_flag=True, help='Wait for jobs termination to complete')
@common_options
@pass_cli_context
def jobs_term(ctx, all, jobid, wait):
"""Terminate jobs"""
ctx.initialize()
convoy.fleet.action_jobs_term(
ctx.batch_client, ctx.config, all, jobid, wait)
@jobs.command('del')
@click.option(
'--all', is_flag=True, help='Delete all jobs in Batch account')
@click.option(
'--jobid', help='Delete just the specified job id')
@click.option(
'--wait', is_flag=True, help='Wait for jobs deletion to complete')
@common_options
@pass_cli_context
def jobs_del(ctx, all, jobid, wait):
"""Delete jobs"""
ctx.initialize()
convoy.fleet.action_jobs_del(
ctx.batch_client, ctx.config, all, jobid, wait)
@jobs.command('deltasks')
@click.option(
'--jobid', help='Delete tasks in the specified job id')
@click.option(
'--taskid', help='Delete tasks in the specified task id')
@click.option(
'--wait', is_flag=True, help='Wait for task deletion to complete')
@common_options
@pass_cli_context
def jobs_deltasks(ctx, jobid, taskid, wait):
"""Delete specified tasks in jobs"""
ctx.initialize()
convoy.fleet.action_jobs_deltasks(
ctx.batch_client, ctx.config, jobid, taskid, wait)
@jobs.command('cmi')
@click.option(
'--delete', is_flag=True,
help='Delete all cleanup multi-instance jobs in Batch account')
@common_options
@pass_cli_context
def jobs_cmi(ctx, delete):
"""Cleanup multi-instance jobs"""
ctx.initialize()
convoy.fleet.action_jobs_cmi(ctx.batch_client, ctx.config, delete)
@cli.group()
@pass_cli_context
def data(ctx):
"""Data actions"""
pass
@data.command('listfiles')
@click.option(
'--jobid', help='List files from the specified job id')
@click.option(
'--taskid', help='List files from the specified task id')
@common_options
@pass_cli_context
def data_listfiles(ctx, jobid, taskid):
"""List files for tasks in jobs"""
ctx.initialize()
convoy.fleet.action_data_listfiles(
ctx.batch_client, ctx.config, jobid, taskid)
@data.command('stream')
@click.option(
'--disk', is_flag=True,
help='Write streamed data to disk and suppress console output')
@click.option(
'--filespec', help='File specification as jobid,taskid,filename')
@common_options
@pass_cli_context
def data_stream(ctx, disk, filespec):
"""Stream a file as text to the local console or as binary to disk"""
ctx.initialize()
convoy.fleet.action_data_stream(
ctx.batch_client, ctx.config, filespec, disk)
@data.command('getfile')
@click.option(
'--all', is_flag=True, help='Retrieve all files for given job/task')
@click.option(
'--filespec',
help='File specification as jobid,taskid,filename or '
'jobid,taskid,include_pattern if invoked with --all')
@common_options
@pass_cli_context
def data_getfile(ctx, all, filespec):
"""Retrieve file(s) from a job/task"""
ctx.initialize()
convoy.fleet.action_data_getfile(
ctx.batch_client, ctx.config, all, filespec)
@data.command('getfilenode')
@click.option(
'--all', is_flag=True, help='Retrieve all files for given compute node')
@click.option(
'--filespec', help='File specification as nodeid,filename or '
'nodeid,include_pattern if invoked with --all')
@common_options
@pass_cli_context
def data_getfilenode(ctx, all, filespec):
"""Retrieve file(s) from a compute node"""
ctx.initialize()
convoy.fleet.action_data_getfilenode(
ctx.batch_client, ctx.config, all, filespec)
@data.command('ingress')
@common_options
@pass_cli_context
def data_ingress(ctx):
"""Ingress data into Azure"""
ctx.initialize()
convoy.fleet.action_data_ingress(ctx.batch_client, ctx.config)
if __name__ == '__main__':
convoy.util.setup_logger(logger)
cli()