manta-cli 2.0.0-beta.39

Another CLI for ALPS
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
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
.ie \n(.g .ds Aq \(aq
.el .ds Aq '
.TH manta 1  "manta 2.0.0-beta.37" 
.ie \n(.g .ds Aq \(aq
.el .ds Aq '
.SH NAME
manta
.ie \n(.g .ds Aq \(aq
.el .ds Aq '
.SH SYNOPSIS
\fBmanta\fR [\fB\-\-site\fR] [\fB\-h\fR|\fB\-\-help\fR] [\fB\-V\fR|\fB\-\-version\fR] [\fIsubcommands\fR]
.ie \n(.g .ds Aq \(aq
.el .ds Aq '
.SH DESCRIPTION
.ie \n(.g .ds Aq \(aq
.el .ds Aq '
.SH OPTIONS
.TP
\fB\-\-site\fR \fI<SITE_NAME>\fR
Override the active site for this invocation
.TP
\fB\-h\fR, \fB\-\-help\fR
Print help
.TP
\fB\-V\fR, \fB\-\-version\fR
Print version
.ie \n(.g .ds Aq \(aq
.el .ds Aq '
.SH SUBCOMMANDS
.SS "manta config"
Show or change CLI\-side settings (active site, default node group, log level)
.TP
[\fB\-h\fR, \fB\-\-help\fR]
Print help
.SS "manta config show"
Show current configuration values
.TP
[\fB\-o\fR, \fB\-\-output\fR] \fI<FORMAT>\fR
Output format
.TP
[\fB\-h\fR, \fB\-\-help\fR]
Print help
.SS "manta config set"
Set a configuration value
.TP
[\fB\-h\fR, \fB\-\-help\fR]
Print help
.SS "manta config set hsm"
Set the active node group
.TP
[\fB\-h\fR, \fB\-\-help\fR]
Print help
.TP
\fIGROUP_NAME\fR
Node group name
.SS "manta config set parent-hsm"
Set the parent node group
.TP
[\fB\-h\fR, \fB\-\-help\fR]
Print help
.TP
\fIGROUP_NAME\fR
Node group name
.SS "manta config set site"
Set the active site
.TP
[\fB\-h\fR, \fB\-\-help\fR]
Print help
.TP
\fISITE_NAME\fR
Site name
.SS "manta config set log"
Set the log verbosity level
.TP
[\fB\-h\fR, \fB\-\-help\fR]
Print help
.TP
\fILOG_LEVEL\fR
Log verbosity level
.SS "manta config unset"
Clear a configuration value
.TP
[\fB\-h\fR, \fB\-\-help\fR]
Print help
.SS "manta config unset hsm"
Clear the active node group
.TP
[\fB\-h\fR, \fB\-\-help\fR]
Print help
.SS "manta config unset parent-hsm"
Clear the parent node group
.TP
[\fB\-h\fR, \fB\-\-help\fR]
Print help
.SS "manta config unset auth"
Clear the cached authentication token
.TP
[\fB\-h\fR, \fB\-\-help\fR]
Print help
.SS "manta get"
Inspect groups, nodes, hardware, images, configurations, sessions, templates, and boot/kernel parameters
.TP
[\fB\-h\fR, \fB\-\-help\fR]
Print help
.SS "manta get groups"
List node groups visible to your token (or look up one by name)
.TP
[\fB\-o\fR, \fB\-\-output\fR] \fI<FORMAT>\fR
Output format
.TP
[\fB\-h\fR, \fB\-\-help\fR]
Print help
.TP
[\fIGROUP_NAME\fR]
Group name (lists all groups if omitted)
.SS "manta get hardware"
Inspect hardware components
.TP
[\fB\-h\fR, \fB\-\-help\fR]
Print help
.SS "manta get hardware nodes"
Show hardware inventory for a set of nodes
.TP
[\fB\-o\fR, \fB\-\-output\fR] \fI<FORMAT>\fR
Output format
.TP
[\fB\-h\fR, \fB\-\-help\fR]
Print help
.TP
\fINODES\fR
Xnames, NIDs, or a hostlist expression.
eg: \*(Aqx1003c1s7b0n0,x1003c1s7b0n1\*(Aq, \*(Aqnid001313,nid001314\*(Aq,
\*(Aqx1003c1s7b0n[0\-1],x1003c1s7b1n0\*(Aq, \*(Aqnid00131[0\-9]\*(Aq
.SS "manta get sessions"
List configuration sessions
.TP
[\fB\-n\fR, \fB\-\-name\fR] \fI<SESSION_NAME>\fR
Return only the session with this name
.TP
[\fB\-a\fR, \fB\-\-min\-age\fR] \fI<VALUE>\fR
Return only sessions older than this age (eg: \*(Aq1d\*(Aq, \*(Aq6h\*(Aq)
.TP
[\fB\-A\fR, \fB\-\-max\-age\fR] \fI<VALUE>\fR
Return only sessions younger than this age (eg: \*(Aq1d\*(Aq, \*(Aq6h\*(Aq)
.TP
[\fB\-t\fR, \fB\-\-type\fR] \fI<VALUE>\fR
Return only sessions of this type
.TP
[\fB\-s\fR, \fB\-\-status\fR] \fI<VALUE>\fR
Return only sessions with this status
.TP
[\fB\-m\fR, \fB\-\-most\-recent\fR]
Return only the most recent session (equivalent to \-\-limit 1)
.TP
[\fB\-l\fR, \fB\-\-limit\fR] \fI<VALUE>\fR
Return only the <VALUE> most recent sessions
.TP
[\fB\-o\fR, \fB\-\-output\fR] \fI<FORMAT>\fR
Output format
.TP
[\fB\-x\fR, \fB\-\-xnames\fR] \fI<NODES>\fR
Xnames, NIDs, or hostlist expression. Returns sessions targeting these nodes or their groups
.TP
[\fB\-H\fR, \fB\-\-group\fR] \fI<GROUP_NAME>\fR
Node group name. Returns sessions targeting this group or its members
.TP
[\fB\-h\fR, \fB\-\-help\fR]
Print help
.SS "manta get configurations"
List CFS configurations (filter by name, glob, group, or recency)
.TP
[\fB\-n\fR, \fB\-\-name\fR] \fI<NAME>\fR
Show only the configuration with this exact name
.TP
[\fB\-p\fR, \fB\-\-pattern\fR] \fI<PATTERN>\fR
Glob pattern to filter by name (eg: \*(Aqmy\-cfg*\*(Aq)
.TP
[\fB\-m\fR, \fB\-\-most\-recent\fR]
Return only the most recent (equivalent to \-\-limit 1)
.TP
[\fB\-l\fR, \fB\-\-limit\fR] \fI<VALUE>\fR
Return only the <VALUE> most recent configurations
.TP
[\fB\-o\fR, \fB\-\-output\fR] \fI<FORMAT>\fR
Output format
.TP
[\fB\-H\fR, \fB\-\-group\fR] \fI<GROUP_NAME>\fR
Show only configurations whose layers target this group
.TP
[\fB\-h\fR, \fB\-\-help\fR]
Print help
.SS "manta get templates"
List BOS session templates (filter by name, group, or recency)
.TP
[\fB\-n\fR, \fB\-\-name\fR] \fI<NAME>\fR
Show only the template with this exact name
.TP
[\fB\-m\fR, \fB\-\-most\-recent\fR]
Return only the most recent (equivalent to \-\-limit 1)
.TP
[\fB\-l\fR, \fB\-\-limit\fR] \fI<VALUE>\fR
Return only the <VALUE> most recent templates
.TP
[\fB\-H\fR, \fB\-\-group\fR] \fI<GROUP_NAME>\fR
Show only templates whose boot sets target this group
.TP
[\fB\-o\fR, \fB\-\-output\fR] \fI<FORMAT>\fR
Output format
.TP
[\fB\-h\fR, \fB\-\-help\fR]
Print help
.SS "manta get group-nodes"
Show node details and status for a group
.TP
[\fB\-n\fR, \fB\-\-nids\-only\-one\-line\fR]
Print NIDs on a single line
.TP
[\fB\-x\fR, \fB\-\-xnames\-only\-one\-line\fR]
Print xnames on a single line
.TP
[\fB\-s\fR, \fB\-\-status\fR] \fI<VALUE>\fR
Filter nodes by status
.TP
[\fB\-T\fR, \fB\-\-summary\-status\fR]
Show a group status summary:
OK          — all nodes booted and configured
OFF         — at least one node is OFF
ON          — no nodes OFF, at least one is ON
STANDBY     — at least one node\*(Aqs heartbeat is lost
UNCONFIGURED — all nodes READY but at least one is still being configured
FAILED      — at least one node\*(Aqs configuration failed
.TP
[\fB\-o\fR, \fB\-\-output\fR] \fI<FORMAT>\fR
Output format
.TP
[\fB\-h\fR, \fB\-\-help\fR]
Print help
.TP
\fIGROUP_NAME\fR
Group name
.SS "manta get group-hardware"
Show hardware inventory for a group
.TP
[\fB\-o\fR, \fB\-\-output\fR] \fI<FORMAT>\fR
Output format
.TP
[\fB\-h\fR, \fB\-\-help\fR]
Print help
.TP
\fICLUSTER_NAME\fR
Group name
.SS "manta get nodes"
Show node details and status
.TP
[\fB\-n\fR, \fB\-\-nids\-only\-one\-line\fR]
Print NIDs on a single line
.TP
[\fB\-s\fR, \fB\-\-status\fR] \fI<VALUE>\fR
Filter nodes by status
.TP
[\fB\-T\fR, \fB\-\-summary\-status\fR]
Show a node status summary:
OK          — all nodes booted and configured
OFF         — at least one node is OFF
ON          — no nodes OFF, at least one is ON
STANDBY     — at least one node\*(Aqs heartbeat is lost
UNCONFIGURED — all nodes READY but at least one is still being configured
FAILED      — at least one node\*(Aqs configuration failed
.TP
[\fB\-S\fR, \fB\-\-include\-siblings\fR]
Also show sibling nodes that share a power supply with the requested nodes
.TP
[\fB\-o\fR, \fB\-\-output\fR] \fI<FORMAT>\fR
Output format
.TP
[\fB\-h\fR, \fB\-\-help\fR]
Print help
.TP
\fINODES\fR
Xnames, NIDs, or a hostlist expression.
eg: \*(Aqx1003c1s7b0n0,x1003c1s7b0n1\*(Aq, \*(Aqnid001313,nid001314\*(Aq,
\*(Aqx1003c1s7b0n[0\-1],x1003c1s7b1n0\*(Aq, \*(Aqnid00131[0\-9]\*(Aq
.SS "manta get images"
List IMS images (filter by id, name regex, or recency; sorted most\-recent first)
.TP
[\fB\-i\fR, \fB\-\-id\fR] \fI<IMAGE_ID>\fR
Show only the image with this exact ID
.TP
[\fB\-p\fR, \fB\-\-pattern\fR] \fI<PATTERN>\fR
Regex matched against image name (applied client\-side)
.TP
[\fB\-m\fR, \fB\-\-most\-recent\fR]
Return only the most recent (equivalent to \-\-limit 1)
.TP
[\fB\-l\fR, \fB\-\-limit\fR] \fI<VALUE>\fR
Return only the <VALUE> most recent images
.TP
[\fB\-h\fR, \fB\-\-help\fR]
Print help
.SS "manta get boot-parameters"
Show the BSS boot parameters (kernel, initrd, params) for nodes or a group
.TP
[\fB\-H\fR, \fB\-\-group\fR] \fI<GROUP_NAME>\fR
Show boot parameters for every node in this group
.TP
[\fB\-n\fR, \fB\-\-nodes\fR] \fI<NODES>\fR
Xnames, NIDs, or a hostlist expression.
eg: \*(Aqx1003c1s7b0n0,x1003c1s7b0n1\*(Aq, \*(Aqnid001313,nid001314\*(Aq,
\*(Aqx1003c1s7b0n[0\-1],x1003c1s7b1n0\*(Aq, \*(Aqnid00131[0\-9]\*(Aq
.TP
[\fB\-h\fR, \fB\-\-help\fR]
Print help
.SS "manta get kernel-parameters"
Show kernel parameters for nodes or a group
.TP
[\fB\-n\fR, \fB\-\-nodes\fR] \fI<NODES>\fR
Xnames, NIDs, or a hostlist expression.
eg: \*(Aqx1003c1s7b0n0,x1003c1s7b0n1\*(Aq, \*(Aqnid001313,nid001314\*(Aq,
\*(Aqx1003c1s7b0n[0\-1],x1003c1s7b1n0\*(Aq, \*(Aqnid00131[0\-9]\*(Aq
.TP
[\fB\-H\fR, \fB\-\-group\fR] \fI<GROUP_NAME>\fR
Show kernel parameters for all nodes in this group
.TP
[\fB\-f\fR, \fB\-\-filter\fR] \fI<VALUE>\fR
Comma\-separated list of parameter names to show.
eg: \*(Aqconsole,bad_page,crashkernel,hugepagelist,root\*(Aq
.TP
[\fB\-o\fR, \fB\-\-output\fR] \fI<FORMAT>\fR
Output format
.TP
[\fB\-h\fR, \fB\-\-help\fR]
Print help
.SS "manta get redfish-endpoints"
List the BMCs / controllers the hardware state manager has registered as Redfish endpoints
.TP
[\fB\-i\fR, \fB\-\-id\fR] \fI<VALUE>\fR
Filter by xname (can be specified multiple times)
.TP
[\fB\-f\fR, \fB\-\-fqdn\fR] \fI<VALUE>\fR
Filter by FQDN
.TP
[\fB\-u\fR, \fB\-\-uuid\fR] \fI<VALUE>\fR
Filter by UUID
.TP
[\fB\-m\fR, \fB\-\-macaddr\fR] \fI<VALUE>\fR
Filter by MAC address
.TP
[\fB\-I\fR, \fB\-\-ipaddress\fR] \fI<VALUE>\fR
Filter by IP address (empty string matches endpoints without an IP)
.TP
[\fB\-o\fR, \fB\-\-output\fR] \fI<FORMAT>\fR
Output format
.TP
[\fB\-h\fR, \fB\-\-help\fR]
Print help
.SS "manta add"
Register new nodes, groups, boot/kernel parameters, hardware components, or Redfish endpoints
.TP
[\fB\-h\fR, \fB\-\-help\fR]
Print help
.SS "manta add node"
Register a new node in the hardware state manager.
.PP
Use this for nodes that don\*(Aqt exist yet. To attach existing nodes to a group, use `manta add nodes` (plural).
.TP
\fB\-i\fR, \fB\-\-id\fR \fI<XNAME>\fR
Xname to register
.TP
\fB\-g\fR, \fB\-\-group\fR \fI<NAME>\fR
Group to put the new node into
.TP
[\fB\-H\fR, \fB\-\-hardware\fR] \fI<FILE>\fR
File containing hardware information
.TP
[\fB\-a\fR, \fB\-\-arch\fR] \fI<VALUE>\fR
Node architecture
.TP
[\fB\-d\fR, \fB\-\-disabled\fR]
Register the node as disabled
.TP
[\fB\-o\fR, \fB\-\-output\fR] \fI<FORMAT>\fR
Output format
.TP
[\fB\-h\fR, \fB\-\-help\fR]
Print help (see a summary with \*(Aq\-h\*(Aq)
.SS "manta add nodes"
Add existing nodes to a group\*(Aqs membership.
.PP
Differs from `manta add node` (singular), which registers a brand\-new node in the inventory; this command operates on nodes that already exist and just changes which group(s) they belong to.
.TP
\fB\-g\fR, \fB\-\-group\fR \fI<NAME>\fR
Group to add the nodes to
.TP
\fB\-n\fR, \fB\-\-nodes\fR \fI<NODES>\fR
Xnames, NIDs, or a hostlist expression.
eg: \*(Aqx1003c1s7b0n0,x1003c1s7b0n1\*(Aq, \*(Aqnid001313,nid001314\*(Aq,
\*(Aqx1003c1s7b0n[0\-1],x1003c1s7b1n0\*(Aq, \*(Aqnid00131[0\-9]\*(Aq
.TP
[\fB\-d\fR, \fB\-\-dry\-run\fR]
Simulate the operation without making changes
.TP
[\fB\-o\fR, \fB\-\-output\fR] \fI<FORMAT>\fR
Output format
.TP
[\fB\-h\fR, \fB\-\-help\fR]
Print help (see a summary with \*(Aq\-h\*(Aq)
.SS "manta add group"
Create a node group
.TP
\fB\-l\fR, \fB\-\-label\fR \fI<NAME>\fR
Group name
.TP
[\fB\-d\fR, \fB\-\-description\fR] \fI<VALUE>\fR
Group description
.TP
[\fB\-n\fR, \fB\-\-nodes\fR] \fI<NODES>\fR
Xnames, NIDs, or a hostlist expression.
eg: \*(Aqx1003c1s7b0n0,x1003c1s7b0n1\*(Aq, \*(Aqnid001313,nid001314\*(Aq,
\*(Aqx1003c1s7b0n[0\-1],x1003c1s7b1n0\*(Aq, \*(Aqnid00131[0\-9]\*(Aq
.TP
[\fB\-o\fR, \fB\-\-output\fR] \fI<FORMAT>\fR
Output format
.TP
[\fB\-h\fR, \fB\-\-help\fR]
Print help
.SS "manta add hardware"
[experimental] Add hardware components to a group
.TP
[\fB\-P\fR, \fB\-\-pattern\fR] \fI<PATTERN>\fR
Hardware component pattern
.TP
[\fB\-t\fR, \fB\-\-target\-group\fR] \fI<NAME>\fR
Group to add components to
.TP
[\fB\-p\fR, \fB\-\-parent\-group\fR] \fI<NAME>\fR
Group that donates the components
.TP
[\fB\-d\fR, \fB\-\-dry\-run\fR]
Simulate the operation without making changes
.TP
[\fB\-c\fR, \fB\-\-create\-group\fR]
Create the target group if it does not exist
.TP
[\fB\-o\fR, \fB\-\-output\fR] \fI<FORMAT>\fR
Output format
.TP
[\fB\-h\fR, \fB\-\-help\fR]
Print help
.SS "manta add boot-parameters"
Create a BSS boot\-parameters entry (kernel, initrd, params, cloud\-init) for one or more nodes
.TP
\fB\-H\fR, \fB\-\-hosts\fR \fI<XNAMES>\fR
Xnames of the nodes
.TP
[\fB\-n\fR, \fB\-\-nids\fR] \fI<VALUE>\fR
Comma\-separated NIDs of the nodes
.TP
[\fB\-m\fR, \fB\-\-macs\fR] \fI<VALUE>\fR
Comma\-separated MAC addresses of the nodes
.TP
[\fB\-p\fR, \fB\-\-params\fR] \fI<VALUE>\fR
Kernel parameters
.TP
[\fB\-k\fR, \fB\-\-kernel\fR] \fI<VALUE>\fR
S3 path to the kernel file
.TP
[\fB\-i\fR, \fB\-\-initrd\fR] \fI<VALUE>\fR
S3 path to the initrd file
.TP
[\fB\-c\fR, \fB\-\-cloud\-init\fR] \fI<VALUE>\fR
Cloud\-init script
.TP
[\fB\-d\fR, \fB\-\-dry\-run\fR]
Simulate the operation without making changes
.TP
[\fB\-y\fR, \fB\-\-assume\-yes\fR]
Skip confirmation prompts
.TP
[\fB\-o\fR, \fB\-\-output\fR] \fI<FORMAT>\fR
Output format
.TP
[\fB\-h\fR, \fB\-\-help\fR]
Print help
.SS "manta add kernel-parameters"
Append kernel parameters to nodes (leaves existing parameters untouched unless \-\-overwrite is set)
.TP
[\fB\-n\fR, \fB\-\-nodes\fR] \fI<NODES>\fR
Xnames, NIDs, or a hostlist expression.
eg: \*(Aqx1003c1s7b0n0,x1003c1s7b0n1\*(Aq, \*(Aqnid001313,nid001314\*(Aq,
\*(Aqx1003c1s7b0n[0\-1],x1003c1s7b1n0\*(Aq, \*(Aqnid00131[0\-9]\*(Aq
.TP
[\fB\-H\fR, \fB\-\-group\fR] \fI<GROUP_NAME>\fR
Append kernel parameters to every node in this group
.TP
[\fB\-o\fR, \fB\-\-output\fR] \fI<FORMAT>\fR
Output format
.TP
[\fB\-O\fR, \fB\-\-overwrite\fR]
Overwrite the value if the parameter already exists
.TP
[\fB\-y\fR, \fB\-\-assume\-yes\fR]
Skip confirmation prompts
.TP
[\fB\-\-do\-not\-reboot\fR]
Do not reboot nodes after applying changes
.TP
[\fB\-d\fR, \fB\-\-dry\-run\fR]
Simulate the operation without making changes
.TP
[\fB\-h\fR, \fB\-\-help\fR]
Print help
.TP
\fIPARAMS\fR
Space\-separated kernel parameters to append.
eg: bos_update_frequency=4h console=ttyS0,115200 crashkernel=512M
.SS "manta add redfish-endpoints"
Register a new Redfish endpoint
.TP
\fB\-i\fR, \fB\-\-id\fR \fI<XNAME>\fR
Xname of the BMC or controller
.TP
[\fB\-n\fR, \fB\-\-name\fR] \fI<VALUE>\fR
Arbitrary user\-provided name for the endpoint
.TP
[\fB\-H\fR, \fB\-\-hostname\fR] \fI<VALUE>\fR
Hostname (FQDN host portion); normally identical to the xname
.TP
[\fB\-d\fR, \fB\-\-domain\fR] \fI<VALUE>\fR
Domain (FQDN domain portion)
.TP
[\fB\-f\fR, \fB\-\-fqdn\fR] \fI<VALUE>\fR
Fully\-qualified domain name on the management network (derived from hostname + domain)
.TP
[\fB\-e\fR, \fB\-\-enabled\fR]
Enable the endpoint upon creation
.TP
[\fB\-u\fR, \fB\-\-user\fR] \fI<VALUE>\fR
Username for endpoint authentication
.TP
[\fB\-p\fR, \fB\-\-password\fR] \fI<VALUE>\fR
Password for endpoint authentication
.TP
[\fB\-U\fR, \fB\-\-use\-ssdp\fR]
Use SSDP for discovery if the endpoint supports it
.TP
[\fB\-m\fR, \fB\-\-mac\-required\fR]
Require a MAC address for geolocation
.TP
[\fB\-M\fR, \fB\-\-macaddr\fR] \fI<VALUE>\fR
MAC address of the Redfish endpoint on the management network
.TP
[\fB\-I\fR, \fB\-\-ipaddress\fR] \fI<VALUE>\fR
IP address of the Redfish endpoint on the management network (IPv4 or IPv6)
.TP
[\fB\-r\fR, \fB\-\-rediscover\-on\-update\fR]
Trigger rediscovery when endpoint information is updated
.TP
[\fB\-t\fR, \fB\-\-template\-id\fR] \fI<VALUE>\fR
Discovery template ID
.TP
[\fB\-o\fR, \fB\-\-output\fR] \fI<FORMAT>\fR
Output format
.TP
[\fB\-h\fR, \fB\-\-help\fR]
Print help
.SS "manta apply"
Roll out configurations, images, session templates, boot/kernel parameters, and hardware rescaling
.TP
[\fB\-h\fR, \fB\-\-help\fR]
Print help
.SS "manta apply hardware"
[experimental] Rescale a group\*(Aqs hardware allocation
.TP
[\fB\-h\fR, \fB\-\-help\fR]
Print help
.SS "manta apply hardware group"
[experimental] Upscale or downscale a group by specifying a hardware component pattern.
.PP
If the group does not exist it will be created; otherwise its node assignment is updated.
.PP
Pattern format: <component>:<quantity>[:<component>:<quantity>...]
eg: \*(Aqa100:12:epyc:5\*(Aq  — assign nodes with 12 A100 GPUs and 5 EPYC CPUs total
.TP
\fB\-P\fR, \fB\-\-pattern\fR \fI<PATTERN>\fR
Hardware pattern: <component>:<qty>[:<component>:<qty>...].
eg: \*(Aqa100:12:epyc:5\*(Aq
.TP
\fB\-t\fR, \fB\-\-target\-group\fR \fI<TARGET_GROUP_NAME>\fR
Group to rescale
.TP
\fB\-p\fR, \fB\-\-parent\-group\fR \fI<PARENT_GROUP_NAME>\fR
Group that donates or receives the redistributed nodes
.TP
[\fB\-d\fR, \fB\-\-dry\-run\fR]
Simulate the operation without making changes
.TP
[\fB\-c\fR, \fB\-\-create\-target\-group\fR]
Create the target group if it does not exist
.TP
[\fB\-D\fR, \fB\-\-delete\-empty\-parent\-group\fR]
Delete the parent group if empty after this operation
.TP
[\fB\-u\fR, \fB\-\-unpin\-nodes\fR]
Allow any available nodes to be selected
.TP
[\fB\-o\fR, \fB\-\-output\fR] \fI<FORMAT>\fR
Output format
.TP
[\fB\-h\fR, \fB\-\-help\fR]
Print help (see a summary with \*(Aq\-h\*(Aq)
.SS "manta apply sat-file"
Process a SAT file containing up to three sections:
.PP
\- `configurations`:   configurations to create
\- `images`:           images to build from those configurations
\- `session_templates`: session templates to create
.PP
Use \-\-image\-only to process only configurations and images.
Use \-\-sessiontemplate\-only to process only configurations and session templates.
.TP
\fB\-t\fR, \fB\-\-sat\-template\-file\fR \fI<FILE>\fR
SAT file path (may be a jinja2 template)
.TP
[\fB\-f\fR, \fB\-\-values\-file\fR] \fI<FILE>\fR
Values file to expand jinja2 variables in the SAT file
.TP
[\fB\-V\fR, \fB\-\-values\fR] \fI<VALUE>\fR
Inline values to expand jinja2 variables (overrides \-\-values\-file)
.TP
[\fB\-\-reboot\fR]
Reboot nodes after applying session templates
.TP
[\fB\-v\fR, \fB\-\-ansible\-verbosity\fR] \fI<VALUE>\fR
Ansible verbosity level (1 = \-v, 2 = \-vv, …, max 4)
.TP
[\fB\-P\fR, \fB\-\-ansible\-passthrough\fR] \fI<VALUE>\fR
Additional Ansible flags (limited to \-\-extra\-vars, \-\-forks, \-\-skip\-tags, \-\-start\-at\-task, \-\-tags)
.TP
[\fB\-o\fR, \fB\-\-overwrite\-configuration\fR]
Overwrite an existing configuration with the same name
.TP
[\fB\-w\fR, \fB\-\-watch\-logs\fR]
Stream session logs to stdout
.TP
[\fB\-T\fR, \fB\-\-timestamps\fR]
Show log timestamps
.TP
[\fB\-i\fR, \fB\-\-image\-only\fR]
Process only the `configurations` and `images` sections
.TP
[\fB\-s\fR, \fB\-\-sessiontemplate\-only\fR]
Process only the `configurations` and `session_templates` sections
.TP
[\fB\-p\fR, \fB\-\-pre\-hook\fR] \fI<SCRIPT>\fR
Command to run before processing.
eg: \-\-pre\-hook "echo hello"
.TP
[\fB\-a\fR, \fB\-\-post\-hook\fR] \fI<SCRIPT>\fR
Command to run after successful processing.
eg: \-\-post\-hook "echo hello"
.TP
[\fB\-y\fR, \fB\-\-assume\-yes\fR]
Skip confirmation prompts
.TP
[\fB\-d\fR, \fB\-\-dry\-run\fR]
Simulate the operation without making changes
.TP
[\fB\-\-output\fR] \fI<FORMAT>\fR
Output format
.TP
[\fB\-h\fR, \fB\-\-help\fR]
Print help (see a summary with \*(Aq\-h\*(Aq)
.SS "manta apply boot"
Update boot parameters and runtime configuration
.TP
[\fB\-h\fR, \fB\-\-help\fR]
Print help
.SS "manta apply boot nodes"
Update the boot parameters (image, runtime configuration, and kernel parameters) for a set of nodes.
.PP
The boot image can be specified by image ID or by the configuration name used to build it (the most recent matching image is used).
.PP
eg:
  manta apply boot nodes \\
    \-\-boot\-image\-configuration <config\-name> \\
    \-\-runtime\-configuration <config\-name> <nodes>
.TP
[\fB\-i\fR, \fB\-\-boot\-image\fR] \fI<IMAGE_ID>\fR
Image ID to boot the nodes
.TP
[\fB\-b\fR, \fB\-\-boot\-image\-configuration\fR] \fI<NAME>\fR
Configuration name used to build the boot image (uses the most recent matching image)
.TP
[\fB\-r\fR, \fB\-\-runtime\-configuration\fR] \fI<NAME>\fR
Configuration to apply to nodes after booting
.TP
[\fB\-k\fR, \fB\-\-kernel\-parameters\fR] \fI<VALUE>\fR
Kernel parameters to assign to the nodes
.TP
[\fB\-y\fR, \fB\-\-assume\-yes\fR]
Skip confirmation prompts
.TP
[\fB\-\-do\-not\-reboot\fR]
Suppress the automatic reboot after updating boot parameters
.TP
[\fB\-d\fR, \fB\-\-dry\-run\fR]
Simulate the operation without making changes
.TP
[\fB\-o\fR, \fB\-\-output\fR] \fI<FORMAT>\fR
Output format
.TP
[\fB\-h\fR, \fB\-\-help\fR]
Print help (see a summary with \*(Aq\-h\*(Aq)
.TP
\fINODES\fR
Xnames, NIDs, or a hostlist expression.
eg: \*(Aqx1003c1s7b0n0,x1003c1s7b0n1\*(Aq, \*(Aqnid001313,nid001314\*(Aq,
\*(Aqx1003c1s7b0n[0\-1],x1003c1s7b1n0\*(Aq, \*(Aqnid00131[0\-9]\*(Aq
.SS "manta apply boot group"
Update the boot parameters (image, runtime configuration, and kernel parameters) for all nodes in a group.
.PP
The boot image can be specified by image ID or by the configuration name used to build it (the most recent matching image is used).
.PP
eg:
  manta apply boot group \\
    \-\-boot\-image\-configuration <config\-name> \\
    \-\-runtime\-configuration <config\-name> <group\-name>
.TP
[\fB\-i\fR, \fB\-\-boot\-image\fR] \fI<IMAGE_ID>\fR
Image ID to boot the nodes
.TP
[\fB\-b\fR, \fB\-\-boot\-image\-configuration\fR] \fI<NAME>\fR
Configuration name used to build the boot image (uses the most recent matching image)
.TP
[\fB\-r\fR, \fB\-\-runtime\-configuration\fR] \fI<NAME>\fR
Configuration to apply to nodes after booting
.TP
[\fB\-k\fR, \fB\-\-kernel\-parameters\fR] \fI<VALUE>\fR
Kernel parameters to assign to all group members
.TP
[\fB\-y\fR, \fB\-\-assume\-yes\fR]
Skip confirmation prompts
.TP
[\fB\-\-do\-not\-reboot\fR]
Suppress the automatic reboot after updating boot parameters
.TP
[\fB\-d\fR, \fB\-\-dry\-run\fR]
Simulate the operation without making changes
.TP
[\fB\-o\fR, \fB\-\-output\fR] \fI<FORMAT>\fR
Output format
.TP
[\fB\-h\fR, \fB\-\-help\fR]
Print help (see a summary with \*(Aq\-h\*(Aq)
.TP
\fICLUSTER_NAME\fR
Group name
.SS "manta apply boot-parameters"
Update boot parameters for nodes
.TP
\fB\-H\fR, \fB\-\-hosts\fR \fI<XNAMES>\fR
Xnames of the nodes to update
.TP
[\fB\-p\fR, \fB\-\-params\fR] \fI<VALUE>\fR
Kernel parameters
.TP
[\fB\-k\fR, \fB\-\-kernel\fR] \fI<VALUE>\fR
S3 path to the kernel file
.TP
[\fB\-i\fR, \fB\-\-initrd\fR] \fI<VALUE>\fR
S3 path to the initrd file
.TP
[\fB\-d\fR, \fB\-\-dry\-run\fR]
Simulate the operation without making changes
.TP
[\fB\-y\fR, \fB\-\-assume\-yes\fR]
Skip confirmation prompts
.TP
[\fB\-o\fR, \fB\-\-output\fR] \fI<FORMAT>\fR
Output format
.TP
[\fB\-h\fR, \fB\-\-help\fR]
Print help
.SS "manta apply redfish-endpoints"
Update an existing Redfish endpoint
.TP
\fB\-i\fR, \fB\-\-id\fR \fI<XNAME>\fR
Xname of the endpoint to update
.TP
[\fB\-n\fR, \fB\-\-name\fR] \fI<VALUE>\fR
Arbitrary user\-provided name for the endpoint
.TP
[\fB\-H\fR, \fB\-\-hostname\fR] \fI<VALUE>\fR
Hostname (FQDN host portion)
.TP
[\fB\-d\fR, \fB\-\-domain\fR] \fI<VALUE>\fR
Domain (FQDN domain portion)
.TP
[\fB\-f\fR, \fB\-\-fqdn\fR] \fI<VALUE>\fR
Fully\-qualified domain name on the management network
.TP
[\fB\-e\fR, \fB\-\-enabled\fR]
Enable the endpoint
.TP
[\fB\-u\fR, \fB\-\-user\fR] \fI<VALUE>\fR
Username for endpoint authentication
.TP
[\fB\-p\fR, \fB\-\-password\fR] \fI<VALUE>\fR
Password for endpoint authentication
.TP
[\fB\-U\fR, \fB\-\-use\-ssdp\fR]
Use SSDP for discovery if the endpoint supports it
.TP
[\fB\-m\fR, \fB\-\-mac\-required\fR]
Require a MAC address for geolocation
.TP
[\fB\-M\fR, \fB\-\-macaddr\fR] \fI<VALUE>\fR
MAC address of the Redfish endpoint on the management network
.TP
[\fB\-I\fR, \fB\-\-ipaddress\fR] \fI<VALUE>\fR
IP address of the Redfish endpoint on the management network (IPv4 or IPv6)
.TP
[\fB\-r\fR, \fB\-\-rediscover\-on\-update\fR]
Trigger rediscovery when endpoint information is updated
.TP
[\fB\-t\fR, \fB\-\-template\-id\fR] \fI<VALUE>\fR
Discovery template ID
.TP
[\fB\-o\fR, \fB\-\-output\fR] \fI<FORMAT>\fR
Output format
.TP
[\fB\-h\fR, \fB\-\-help\fR]
Print help
.SS "manta apply kernel-parameters"
Replace the full kernel\-parameters string on nodes (drops any existing parameters not listed)
.TP
[\fB\-n\fR, \fB\-\-nodes\fR] \fI<NODES>\fR
Xnames, NIDs, or a hostlist expression.
eg: \*(Aqx1003c1s7b0n0,x1003c1s7b0n1\*(Aq, \*(Aqnid001313,nid001314\*(Aq,
\*(Aqx1003c1s7b0n[0\-1],x1003c1s7b1n0\*(Aq, \*(Aqnid00131[0\-9]\*(Aq
.TP
[\fB\-H\fR, \fB\-\-group\fR] \fI<GROUP_NAME>\fR
Replace kernel parameters on every node in this group
.TP
[\fB\-y\fR, \fB\-\-assume\-yes\fR]
Skip confirmation prompts
.TP
[\fB\-\-do\-not\-reboot\fR]
Do not reboot nodes after applying changes
.TP
[\fB\-d\fR, \fB\-\-dry\-run\fR]
Simulate the operation without making changes
.TP
[\fB\-o\fR, \fB\-\-output\fR] \fI<FORMAT>\fR
Output format
.TP
[\fB\-h\fR, \fB\-\-help\fR]
Print help
.TP
\fIPARAMS\fR
Space\-separated kernel parameters to apply.
eg: bos_update_frequency=4h console=ttyS0,115200 crashkernel=512M
.SS "manta apply ephemeral-environment"
Launch an ephemeral SSH environment from an image.
.PP
Returns an SSH hostname once the environment is ready (usually within a few seconds).
.TP
\fB\-i\fR, \fB\-\-image\-id\fR \fI<IMAGE_ID>\fR
Image ID to use
.TP
[\fB\-h\fR, \fB\-\-help\fR]
Print help (see a summary with \*(Aq\-h\*(Aq)
.SS "manta apply template"
Boot nodes using an existing session template
.TP
[\fB\-n\fR, \fB\-\-name\fR] \fI<VALUE>\fR
Name of the boot session to create
.TP
[\fB\-o\fR, \fB\-\-operation\fR] \fI<VALUE>\fR
Boot operation to perform
.TP
\fB\-t\fR, \fB\-\-template\fR \fI<VALUE>\fR
Session template name
.TP
\fB\-l\fR, \fB\-\-limit\fR \fI<VALUE>\fR
Limit to specific nodes, groups, or roles (OR by default; prefix with \*(Aq&\*(Aq for AND or \*(Aq!\*(Aq for NOT)
.TP
[\fB\-i\fR, \fB\-\-include\-disabled\fR]
Include nodes marked as disabled in the hardware state manager
.TP
[\fB\-y\fR, \fB\-\-assume\-yes\fR]
Skip confirmation prompts
.TP
[\fB\-d\fR, \fB\-\-dry\-run\fR]
Simulate the operation without making changes
.TP
[\fB\-h\fR, \fB\-\-help\fR]
Print help
.SS "manta delete"
Remove nodes, groups, images, configurations, sessions, boot/kernel parameters, or Redfish endpoints
.TP
[\fB\-h\fR, \fB\-\-help\fR]
Print help
.SS "manta delete group"
Delete a node group.
.PP
The group must be empty before deletion. Move its members to another group with \*(Aqmigrate nodes\*(Aq first.
.TP
[\fB\-f\fR, \fB\-\-force\fR]
Force deletion
.TP
[\fB\-o\fR, \fB\-\-output\fR] \fI<FORMAT>\fR
Output format
.TP
[\fB\-h\fR, \fB\-\-help\fR]
Print help (see a summary with \*(Aq\-h\*(Aq)
.TP
\fIGROUP_NAME\fR
Name of the group to delete
.SS "manta delete node"
Remove a node from the hardware state manager (the node disappears from the inventory). To only remove it from a group\*(Aqs membership without deleting it, use `manta delete nodes` (plural).
.TP
[\fB\-o\fR, \fB\-\-output\fR] \fI<FORMAT>\fR
Output format
.TP
[\fB\-h\fR, \fB\-\-help\fR]
Print help (see a summary with \*(Aq\-h\*(Aq)
.TP
\fIXNAME\fR
Xname of the node to remove
.SS "manta delete nodes"
Remove nodes from a group\*(Aqs membership.
.PP
Differs from `manta delete node` (singular), which removes a node from the system inventory entirely; this command leaves the nodes in place and only changes which group(s) they belong to.
.TP
\fB\-g\fR, \fB\-\-group\fR \fI<NAME>\fR
Group to remove the nodes from
.TP
\fB\-n\fR, \fB\-\-nodes\fR \fI<NODES>\fR
Xnames, NIDs, or a hostlist expression.
eg: \*(Aqx1003c1s7b0n0,x1003c1s7b0n1\*(Aq, \*(Aqnid001313,nid001314\*(Aq,
\*(Aqx1003c1s7b0n[0\-1],x1003c1s7b1n0\*(Aq, \*(Aqnid00131[0\-9]\*(Aq
.TP
[\fB\-d\fR, \fB\-\-dry\-run\fR]
Simulate the operation without making changes
.TP
[\fB\-o\fR, \fB\-\-output\fR] \fI<FORMAT>\fR
Output format
.TP
[\fB\-h\fR, \fB\-\-help\fR]
Print help (see a summary with \*(Aq\-h\*(Aq)
.SS "manta delete kernel-parameters"
Remove kernel parameters from nodes (parameter values are ignored — match is by name)
.TP
[\fB\-n\fR, \fB\-\-nodes\fR] \fI<NODES>\fR
Xnames, NIDs, or a hostlist expression.
eg: \*(Aqx1003c1s7b0n0,x1003c1s7b0n1\*(Aq, \*(Aqnid001313,nid001314\*(Aq,
\*(Aqx1003c1s7b0n[0\-1],x1003c1s7b1n0\*(Aq, \*(Aqnid00131[0\-9]\*(Aq
.TP
[\fB\-H\fR, \fB\-\-group\fR] \fI<GROUP_NAME>\fR
Remove the listed kernel parameters from every node in this group
.TP
[\fB\-y\fR, \fB\-\-assume\-yes\fR]
Skip confirmation prompts
.TP
[\fB\-\-do\-not\-reboot\fR]
Do not reboot nodes after applying changes
.TP
[\fB\-d\fR, \fB\-\-dry\-run\fR]
Simulate the operation without making changes
.TP
[\fB\-o\fR, \fB\-\-output\fR] \fI<FORMAT>\fR
Output format
.TP
[\fB\-h\fR, \fB\-\-help\fR]
Print help
.TP
\fIPARAMS\fR
Comma\-separated kernel parameter names to remove.
eg: console,bad_page,crashkernel,hugepagelist,quiet
.SS "manta delete boot-parameters"
Delete boot parameters for nodes
.TP
[\fB\-H\fR, \fB\-\-hosts\fR] \fI<XNAMES>\fR
Xnames of the nodes
.TP
[\fB\-o\fR, \fB\-\-output\fR] \fI<FORMAT>\fR
Output format
.TP
[\fB\-h\fR, \fB\-\-help\fR]
Print help
.SS "manta delete configurations"
Delete configurations and all associated data (sessions, session templates, boot sessions, and images).
.PP
Use \-\-since and/or \-\-until to filter by the configuration\*(Aqs last\-updated date (format: %Y\-%m\-%d).
.PP
eg:
  \-\-since 2023\-01\-01 \-\-until 2023\-10\-01
    Deletes all configurations last updated between 2023\-01\-01 and 2023\-10\-01.
.TP
[\fB\-n\fR, \fB\-\-configuration\-name\fR] \fI<VALUE>\fR
Glob pattern to filter by name.
eg: my\-config*, my\-config\-v[1,2]
.TP
[\fB\-s\fR, \fB\-\-since\fR] \fI<DATE>\fR
Delete configurations last updated after this date (format: %Y\-%m\-%d)
.TP
[\fB\-u\fR, \fB\-\-until\fR] \fI<DATE>\fR
Delete configurations last updated before this date (format: %Y\-%m\-%d)
.TP
[\fB\-y\fR, \fB\-\-assume\-yes\fR]
Skip confirmation prompts
.TP
[\fB\-o\fR, \fB\-\-output\fR] \fI<FORMAT>\fR
Output format
.TP
[\fB\-h\fR, \fB\-\-help\fR]
Print help (see a summary with \*(Aq\-h\*(Aq)
.SS "manta delete session"
Delete a configuration session.
.PP
For image\-building sessions, the associated image is also removed.
For dynamic (runtime) sessions, the error count is set to its maximum value.
.TP
[\fB\-y\fR, \fB\-\-assume\-yes\fR]
Skip confirmation prompts
.TP
[\fB\-d\fR, \fB\-\-dry\-run\fR]
Simulate the operation without making changes
.TP
[\fB\-o\fR, \fB\-\-output\fR] \fI<FORMAT>\fR
Output format
.TP
[\fB\-h\fR, \fB\-\-help\fR]
Print help (see a summary with \*(Aq\-h\*(Aq)
.TP
\fISESSION_NAME\fR
Name of the session to delete
.SS "manta delete images"
[experimental] Delete IMS images by ID (refuses to delete images currently booting a node)
.TP
[\fB\-d\fR, \fB\-\-dry\-run\fR]
Simulate the operation without making changes
.TP
[\fB\-o\fR, \fB\-\-output\fR] \fI<FORMAT>\fR
Output format
.TP
[\fB\-h\fR, \fB\-\-help\fR]
Print help
.TP
\fIIMAGE_IDS\fR
Comma\-separated image IDs to delete.
eg: e2ce82f0\-e7ba\-4f36\-9f5c\-750346599600,59e0180a\-3fdd\-4936\-bba7\-14ba914ffd34
.SS "manta delete hardware"
[experimental] Remove hardware components from a group
.TP
[\fB\-P\fR, \fB\-\-pattern\fR] \fI<PATTERN>\fR
Hardware component pattern
.TP
[\fB\-t\fR, \fB\-\-target\-group\fR] \fI<TARGET_GROUP_NAME>\fR
Group to remove components from
.TP
[\fB\-p\fR, \fB\-\-parent\-group\fR] \fI<PARENT_GROUP_NAME>\fR
Group that receives the freed components
.TP
[\fB\-d\fR, \fB\-\-dry\-run\fR]
Simulate the operation without making changes
.TP
[\fB\-D\fR, \fB\-\-delete\-group\fR]
Delete the group if empty after this operation
.TP
[\fB\-o\fR, \fB\-\-output\fR] \fI<FORMAT>\fR
Output format
.TP
[\fB\-h\fR, \fB\-\-help\fR]
Print help
.SS "manta delete redfish-endpoints"
Delete a Redfish endpoint
.TP
\fB\-i\fR, \fB\-\-id\fR \fI<XNAME>\fR
Xname of the Redfish endpoint to delete
.TP
[\fB\-o\fR, \fB\-\-output\fR] \fI<FORMAT>\fR
Output format
.TP
[\fB\-h\fR, \fB\-\-help\fR]
Print help
.SS "manta migrate"
Move nodes between groups
.TP
[\fB\-h\fR, \fB\-\-help\fR]
Print help
.SS "manta migrate nodes"
Move nodes between clusters
.TP
[\fB\-f\fR, \fB\-\-from\fR] \fI<NAME>\fR
Source cluster to move nodes from
.TP
\fB\-t\fR, \fB\-\-to\fR \fI<NAME>\fR
Destination cluster to move nodes to
.TP
[\fB\-d\fR, \fB\-\-dry\-run\fR]
Simulate the operation without making changes
.TP
[\fB\-o\fR, \fB\-\-output\fR] \fI<FORMAT>\fR
Output format
.TP
[\fB\-h\fR, \fB\-\-help\fR]
Print help
.TP
\fIXNAMES\fR
Xnames, NIDs, or a hostlist expression.
eg: \*(Aqx1003c1s7b0n0,x1003c1s7b0n1\*(Aq
.SS "manta backup"
Back up a virtual cluster (images, boot settings, group membership) to disk
.TP
[\fB\-h\fR, \fB\-\-help\fR]
Print help
.SS "manta backup vcluster"
Back up a virtual cluster\*(Aqs configuration: images, boot settings, and group membership.
.PP
The backup is derived from the specified session template.
.TP
[\fB\-b\fR, \fB\-\-bos\fR] \fI<SESSIONTEMPLATE>\fR
Session template to derive the backup from
.TP
[\fB\-d\fR, \fB\-\-destination\fR] \fI<FOLDER>\fR
Destination directory for the backup files
.TP
[\fB\-p\fR, \fB\-\-pre\-hook\fR] \fI<SCRIPT>\fR
Command to run before the backup.
eg: \-\-pre\-hook "echo hello"
.TP
[\fB\-a\fR, \fB\-\-post\-hook\fR] \fI<SCRIPT>\fR
Command to run after a successful backup.
eg: \-\-post\-hook "echo hello"
.TP
[\fB\-o\fR, \fB\-\-output\fR] \fI<FORMAT>\fR
Output format
.TP
[\fB\-h\fR, \fB\-\-help\fR]
Print help (see a summary with \*(Aq\-h\*(Aq)
.SS "manta restore"
Restore a virtual cluster from a backup bundle
.TP
[\fB\-h\fR, \fB\-\-help\fR]
Print help
.SS "manta restore vcluster"
Restore a virtual cluster from a backup bundle
.TP
[\fB\-b\fR, \fB\-\-bos\-file\fR] \fI<FILE>\fR
Session template backup file
.TP
[\fB\-c\fR, \fB\-\-cfs\-file\fR] \fI<FILE>\fR
Configuration backup file
.TP
[\fB\-j\fR, \fB\-\-hsm\-file\fR] \fI<FILE>\fR
Group description backup file
.TP
[\fB\-m\fR, \fB\-\-ims\-file\fR] \fI<FILE>\fR
Image metadata backup file
.TP
[\fB\-i\fR, \fB\-\-image\-dir\fR] \fI<PATH>\fR
Directory containing the image files
.TP
[\fB\-p\fR, \fB\-\-pre\-hook\fR] \fI<SCRIPT>\fR
Command to run before the restore.
eg: \-\-pre\-hook "echo hello"
.TP
[\fB\-a\fR, \fB\-\-post\-hook\fR] \fI<SCRIPT>\fR
Command to run after a successful restore.
eg: \-\-post\-hook "echo hello"
.TP
[\fB\-o\fR, \fB\-\-overwrite\fR]
Overwrite existing data
.TP
[\fB\-\-output\fR] \fI<FORMAT>\fR
Output format
.TP
[\fB\-h\fR, \fB\-\-help\fR]
Print help
.SS "manta run"
Create and run a configuration session from a local Ansible repo
.TP
[\fB\-h\fR, \fB\-\-help\fR]
Print help
.SS "manta run session"
Create and run a configuration session from a local git repo.
.PP
The repo must already exist in the system\*(Aqs VCS. The session runs the specified Ansible playbook against the target nodes or group.
.TP
\fB\-n\fR, \fB\-\-name\fR \fI<VALUE>\fR
Session name
.TP
[\fB\-p\fR, \fB\-\-playbook\-name\fR] \fI<VALUE>\fR
Ansible playbook filename
.TP
\fB\-r\fR, \fB\-\-repo\-path\fR \fI<REPO_PATH>\fR
Path to the local git repo containing the Ansible playbook
.TP
[\fB\-w\fR, \fB\-\-watch\-logs\fR]
Stream session logs to stdout
.TP
[\fB\-t\fR, \fB\-\-timestamps\fR]
Show log timestamps
.TP
[\fB\-v\fR, \fB\-\-ansible\-verbosity\fR] \fI<VALUE>\fR
Ansible verbosity level (1 = \-v, 2 = \-vv, …, max 4)
.TP
[\fB\-P\fR, \fB\-\-ansible\-passthrough\fR] \fI<VALUE>\fR
Additional Ansible flags (limited to \-\-extra\-vars, \-\-forks, \-\-skip\-tags, \-\-start\-at\-task, \-\-tags)
.TP
\fB\-l\fR, \fB\-\-ansible\-limit\fR \fI<VALUE>\fR
Limit the session to specific nodes (must be a subset of \-\-group if both are provided)
.TP
[\fB\-H\fR, \fB\-\-group\fR] \fI<GROUP_NAME>\fR
Run the session against every node in this group
.TP
[\fB\-o\fR, \fB\-\-output\fR] \fI<FORMAT>\fR
Output format
.TP
[\fB\-h\fR, \fB\-\-help\fR]
Print help (see a summary with \*(Aq\-h\*(Aq)
.SS "manta power"
Power nodes on, off, or reset (reboot); waits for the transition unless \-\-no\-wait is set
.TP
[\fB\-h\fR, \fB\-\-help\fR]
Print help
.SS "manta power on"
Power on nodes or a group
.TP
[\fB\-h\fR, \fB\-\-help\fR]
Print help
.SS "manta power on group"
Power on all nodes in a group
.TP
[\fB\-R\fR, \fB\-\-reason\fR] \fI<TEXT>\fR
Reason for the power operation
.TP
[\fB\-y\fR, \fB\-\-assume\-yes\fR]
Skip confirmation prompts
.TP
[\fB\-\-no\-wait\fR]
Return as soon as the transition is queued; don\*(Aqt poll for completion
.TP
[\fB\-o\fR, \fB\-\-output\fR] \fI<FORMAT>\fR
Output format
.TP
[\fB\-h\fR, \fB\-\-help\fR]
Print help
.TP
\fICLUSTER_NAME\fR
Group name
.SS "manta power on nodes"
Power on a set of nodes
.TP
[\fB\-y\fR, \fB\-\-assume\-yes\fR]
Skip confirmation prompts
.TP
[\fB\-\-no\-wait\fR]
Return as soon as the transition is queued; don\*(Aqt poll for completion
.TP
[\fB\-o\fR, \fB\-\-output\fR] \fI<FORMAT>\fR
Output format
.TP
[\fB\-h\fR, \fB\-\-help\fR]
Print help
.TP
\fINODES\fR
Xnames, NIDs, or a hostlist expression.
eg: \*(Aqx1003c1s7b0n0,x1003c1s7b0n1\*(Aq, \*(Aqnid001313,nid001314\*(Aq,
\*(Aqx1003c1s7b0n[0\-1],x1003c1s7b1n0\*(Aq, \*(Aqnid00131[0\-9]\*(Aq
.SS "manta power off"
Power off nodes or a group
.TP
[\fB\-h\fR, \fB\-\-help\fR]
Print help
.SS "manta power off group"
Power off all nodes in a group
.TP
[\fB\-g\fR, \fB\-\-graceful\fR]
Perform a graceful shutdown
.TP
[\fB\-R\fR, \fB\-\-reason\fR] \fI<TEXT>\fR
Reason for the power operation
.TP
[\fB\-y\fR, \fB\-\-assume\-yes\fR]
Skip confirmation prompts
.TP
[\fB\-\-no\-wait\fR]
Return as soon as the transition is queued; don\*(Aqt poll for completion
.TP
[\fB\-o\fR, \fB\-\-output\fR] \fI<FORMAT>\fR
Output format
.TP
[\fB\-h\fR, \fB\-\-help\fR]
Print help
.TP
\fICLUSTER_NAME\fR
Group name
.SS "manta power off nodes"
Power off a set of nodes
.TP
[\fB\-g\fR, \fB\-\-graceful\fR]
Perform a graceful shutdown
.TP
[\fB\-y\fR, \fB\-\-assume\-yes\fR]
Skip confirmation prompts
.TP
[\fB\-\-no\-wait\fR]
Return as soon as the transition is queued; don\*(Aqt poll for completion
.TP
[\fB\-o\fR, \fB\-\-output\fR] \fI<FORMAT>\fR
Output format
.TP
[\fB\-h\fR, \fB\-\-help\fR]
Print help
.TP
\fINODES\fR
Xnames, NIDs, or a hostlist expression.
eg: \*(Aqx1003c1s7b0n0,x1003c1s7b0n1\*(Aq, \*(Aqnid001313,nid001314\*(Aq,
\*(Aqx1003c1s7b0n[0\-1],x1003c1s7b1n0\*(Aq, \*(Aqnid00131[0\-9]\*(Aq
.SS "manta power reset"
Reset (reboot) nodes or a group
.TP
[\fB\-h\fR, \fB\-\-help\fR]
Print help
.SS "manta power reset group"
Reset all nodes in a group
.TP
[\fB\-g\fR, \fB\-\-graceful\fR]
Perform a graceful reboot
.TP
[\fB\-y\fR, \fB\-\-assume\-yes\fR]
Skip confirmation prompts
.TP
[\fB\-\-no\-wait\fR]
Return as soon as the transition is queued; don\*(Aqt poll for completion
.TP
[\fB\-o\fR, \fB\-\-output\fR] \fI<FORMAT>\fR
Output format
.TP
[\fB\-r\fR, \fB\-\-reason\fR] \fI<TEXT>\fR
Reason for the power operation
.TP
[\fB\-h\fR, \fB\-\-help\fR]
Print help
.TP
\fICLUSTER_NAME\fR
Group name
.SS "manta power reset nodes"
Reset a set of nodes
.TP
[\fB\-g\fR, \fB\-\-graceful\fR]
Perform a graceful reboot
.TP
[\fB\-y\fR, \fB\-\-assume\-yes\fR]
Skip confirmation prompts
.TP
[\fB\-\-no\-wait\fR]
Return as soon as the transition is queued; don\*(Aqt poll for completion
.TP
[\fB\-o\fR, \fB\-\-output\fR] \fI<FORMAT>\fR
Output format
.TP
[\fB\-h\fR, \fB\-\-help\fR]
Print help
.TP
\fINODES\fR
Xnames, NIDs, or a hostlist expression.
eg: \*(Aqx1003c1s7b0n0,x1003c1s7b0n1\*(Aq, \*(Aqnid001313,nid001314\*(Aq,
\*(Aqx1003c1s7b0n[0\-1],x1003c1s7b1n0\*(Aq, \*(Aqnid00131[0\-9]\*(Aq
.SS "manta log"
Stream configuration session logs to stdout (accepts session, node, group, or NID)
.TP
[\fB\-t\fR, \fB\-\-timestamps\fR]
Show log timestamps
.TP
[\fB\-h\fR, \fB\-\-help\fR]
Print help
.TP
[\fITARGET\fR]
Session name, node group, xname, or NID.
eg: x1003c1s7b0n0, nid001313, zinal, batcher\-64d35a81\-d0e1\-496d\-9eda\-0010e502f2a3
.SS "manta console"
Attach to a node\*(Aqs serial console, or to a configuration session\*(Aqs Ansible container
.TP
[\fB\-h\fR, \fB\-\-help\fR]
Print help
.SS "manta console node"
Connect to a node\*(Aqs serial console.
.PP
Accepts an xname or NID.
eg: \*(Aqx1003c1s7b0n0\*(Aq or \*(Aqnid001313\*(Aq
.TP
[\fB\-h\fR, \fB\-\-help\fR]
Print help (see a summary with \*(Aq\-h\*(Aq)
.TP
\fIXNAME\fR
Node xname or NID
.SS "manta console target-ansible"
Connect to the Ansible target container of a configuration session
.TP
[\fB\-h\fR, \fB\-\-help\fR]
Print help
.TP
\fISESSION_NAME\fR
Configuration session name
.SS "manta gen-autocomplete"
Generate the shell completion script and install it into the shell\*(Aqs standard XDG user completion directory:
.PP
  bash → $XDG_DATA_HOME/bash\-completion/completions/manta
  zsh  → $XDG_DATA_HOME/zsh/site\-functions/_manta
  fish → $XDG_CONFIG_HOME/fish/completions/manta.fish
.PP
Pass `\-\-path <DIR>` to install elsewhere (e.g. a system\-wide location or a directory already on your `$fpath`), or `\-\-print` to emit the script to stdout without touching the filesystem.
.TP
[\fB\-s\fR, \fB\-\-shell\fR] \fI<SHELL>\fR
Shell type (guessed from $SHELL if omitted)
.TP
[\fB\-p\fR, \fB\-\-path\fR] \fI<PATH>\fR
Override the default install directory
.TP
[\fB\-\-print\fR]
Emit the script to stdout instead of installing it
.TP
[\fB\-o\fR, \fB\-\-output\fR] \fI<FORMAT>\fR
Output format
.TP
[\fB\-h\fR, \fB\-\-help\fR]
Print help (see a summary with \*(Aq\-h\*(Aq)
.SS "manta gen-man"
Generate the consolidated `manta.1` man page from the running binary\*(Aqs clap tree and write it into the target directory. The page has a top\-level reference plus one SUBCOMMANDS subsection per (sub)subcommand, so `/<verb>` inside `man manta` jumps to the relevant flag table.
.PP
Defaults to `$XDG_DATA_HOME/man/man1` (i.e. `~/.local/share/man/man1`) when `\-\-path` is omitted. The directory is created if it doesn\*(Aqt exist.
.PP
After install, configure your shell so `man` finds the new location — on Linux this directory is searched by default; on macOS you may need `export MANPATH="$HOME/.local/share/man:$MANPATH"`.
.TP
[\fB\-p\fR, \fB\-\-path\fR] \fI<PATH>\fR
Directory to write `manta.1` into (defaults to $XDG_DATA_HOME/man/man1)
.TP
[\fB\-o\fR, \fB\-\-output\fR] \fI<FORMAT>\fR
Output format
.TP
[\fB\-h\fR, \fB\-\-help\fR]
Print help (see a summary with \*(Aq\-h\*(Aq)
.SS "manta upgrade"
Fetch the highest `manta\-cli\-v*` tag from https://github.com/eth\-cscs/manta/releases, compare against the current version, and (if newer) download the right platform tarball and atomically replace the running binary.
.PP
Use `brew upgrade manta\-cli` instead if you installed via Homebrew — this command will warn but not block in that case.
.TP
[\fB\-c\fR, \fB\-\-check\fR]
Check for a newer version and print it, but don\*(Aqt apply
.TP
[\fB\-d\fR, \fB\-\-dry\-run\fR]
Show what would happen without downloading or replacing
.TP
[\fB\-y\fR, \fB\-\-assume\-yes\fR]
Skip the confirmation prompt before replacing the binary
.TP
[\fB\-o\fR, \fB\-\-output\fR] \fI<FORMAT>\fR
Output format
.TP
[\fB\-h\fR, \fB\-\-help\fR]
Print help (see a summary with \*(Aq\-h\*(Aq)