summaryrefslogtreecommitdiff
path: root/doc/source/cli/details.rst
blob: a4ae3f50073dd41b8afa01518e71751f88132f46 (plain)
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
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
==========================================
Image service (glance) command-line client
==========================================

The glance client is the command-line interface (CLI) for
the Image service (glance) API and its extensions.

This chapter documents :command:`glance` version ``2.8.0``.

For help on a specific :command:`glance` command, enter:

.. code-block:: console

   $ glance help COMMAND

.. _glance_command_usage:

glance usage
~~~~~~~~~~~~

.. code-block:: console

   usage: glance [--version] [-d] [-v] [--get-schema] [-f]
                 [--os-image-url OS_IMAGE_URL]
                 [--os-image-api-version OS_IMAGE_API_VERSION]
                 [--profile HMAC_KEY] [--os-region-name OS_REGION_NAME]
                 [--os-auth-token OS_AUTH_TOKEN]
                 [--os-service-type OS_SERVICE_TYPE]
                 [--os-endpoint-type OS_ENDPOINT_TYPE] [--insecure]
                 [--os-cacert <ca-certificate>] [--os-cert <certificate>]
                 [--os-key <key>] [--timeout <seconds>] [--os-auth-type <name>]
                 [--os-auth-url OS_AUTH_URL] [--os-domain-id OS_DOMAIN_ID]
                 [--os-domain-name OS_DOMAIN_NAME]
                 [--os-project-id OS_PROJECT_ID]
                 [--os-project-name OS_PROJECT_NAME]
                 [--os-project-domain-id OS_PROJECT_DOMAIN_ID]
                 [--os-project-domain-name OS_PROJECT_DOMAIN_NAME]
                 [--os-trust-id OS_TRUST_ID]
                 [--os-default-domain-id OS_DEFAULT_DOMAIN_ID]
                 [--os-default-domain-name OS_DEFAULT_DOMAIN_NAME]
                 [--os-user-id OS_USER_ID] [--os-username OS_USERNAME]
                 [--os-user-domain-id OS_USER_DOMAIN_ID]
                 [--os-user-domain-name OS_USER_DOMAIN_NAME]
                 [--os-password OS_PASSWORD]
                 <subcommand> ...

.. _glance_command_options:

glance optional arguments
~~~~~~~~~~~~~~~~~~~~~~~~~

``--version``
  show program's version number and exit

``-d, --debug``
  Defaults to ``env[GLANCECLIENT_DEBUG]``.

``-v, --verbose``
  Print more verbose output.

``--get-schema``
  Ignores cached copy and forces retrieval of schema
  that generates portions of the help text. Ignored with
  API version 1.

``-f, --force``
  Prevent select actions from requesting user
  confirmation.

``--os-image-url OS_IMAGE_URL``
  Defaults to ``env[OS_IMAGE_URL]``. If the provided image
  url
  contains
  a
  version
  number
  and
  \`--os-image-api-version\`
  is
  omitted
  the
  version
  of
  the
  URL
  will
  be
  picked as the image api version to use.

``--os-image-api-version OS_IMAGE_API_VERSION``
  Defaults to ``env[OS_IMAGE_API_VERSION]`` or 2.

``--profile HMAC_KEY``
  HMAC key to use for encrypting context data for
  performance profiling of operation. This key should be
  the value of HMAC key configured in osprofiler
  middleware in glance, it is specified in glance
  configuration file at /etc/glance/glance-api.conf and
  /etc/glance/glance-registry.conf. Without key the
  profiling will not be triggered even if osprofiler is
  enabled on server side. Defaults to ``env[OS_PROFILE]``.

``--os-region-name OS_REGION_NAME``
  Defaults to ``env[OS_REGION_NAME]``.

``--os-auth-token OS_AUTH_TOKEN``
  Defaults to ``env[OS_AUTH_TOKEN]``.

``--os-service-type OS_SERVICE_TYPE``
  Defaults to ``env[OS_SERVICE_TYPE]``.

``--os-endpoint-type OS_ENDPOINT_TYPE``
  Defaults to ``env[OS_ENDPOINT_TYPE]``.

``--os-auth-type <name>, --os-auth-plugin <name>``
  Authentication type to use

.. _glance_explain:

glance explain
--------------

.. code-block:: console

   usage: glance explain <MODEL>

Describe a specific model.

**Positional arguments:**

``<MODEL>``
  Name of model to describe.

.. _glance_image-create:

glance image-create
-------------------

.. code-block:: console

   usage: glance image-create [--architecture <ARCHITECTURE>]
                              [--protected [True|False]] [--name <NAME>]
                              [--instance-uuid <INSTANCE_UUID>]
                              [--min-disk <MIN_DISK>] [--visibility <VISIBILITY>]
                              [--kernel-id <KERNEL_ID>]
                              [--tags <TAGS> [<TAGS> ...]]
                              [--os-version <OS_VERSION>]
                              [--disk-format <DISK_FORMAT>]
                              [--os-distro <OS_DISTRO>] [--id <ID>]
                              [--owner <OWNER>] [--ramdisk-id <RAMDISK_ID>]
                              [--min-ram <MIN_RAM>]
                              [--container-format <CONTAINER_FORMAT>]
                              [--property <key=value>] [--file <FILE>]
                              [--progress]

Create a new image.

**Optional arguments:**

``--architecture <ARCHITECTURE>``
  Operating system architecture as specified in
  https://docs.openstack.org/glance/latest/user/common-image-properties.html#architecture

``--protected [True|False]``
  If true, image will not be deletable.

``--name <NAME>``
  Descriptive name for the image

``--instance-uuid <INSTANCE_UUID>``
  Metadata which can be used to record which instance
  this image is associated with. (Informational only,
  does not create an instance snapshot.)

``--min-disk <MIN_DISK>``
  Amount of disk space (in GB) required to boot image.

``--visibility <VISIBILITY>``
  Scope of image accessibility Valid values: public,
  private, community, shared

``--kernel-id <KERNEL_ID>``
  ID of image stored in Glance that should be used as
  the kernel when booting an AMI-style image.

``--tags <TAGS> [<TAGS> ...]``
  List of strings related to the image

``--os-version <OS_VERSION>``
  Operating system version as specified by the
  distributor

``--disk-format <DISK_FORMAT>``
  Format of the disk Valid values: None, ami, ari, aki,
  vhd, vhdx, vmdk, raw, qcow2, vdi, iso, ploop

``--os-distro <OS_DISTRO>``
  Common name of operating system distribution as
  specified
  in
  https://docs.openstack.org/glance/latest/user/common-image-properties.html#os-distro

``--id <ID>``
  An identifier for the image

``--owner <OWNER>``
  Owner of the image

``--ramdisk-id <RAMDISK_ID>``
  ID of image stored in Glance that should be used as
  the ramdisk when booting an AMI-style image.

``--min-ram <MIN_RAM>``
  Amount of ram (in MB) required to boot image.

``--container-format <CONTAINER_FORMAT>``
  Format of the container Valid values: None, ami, ari,
  aki, bare, ovf, ova, docker

``--property <key=value>``
  Arbitrary property to associate with image. May be
  used multiple times.

``--file <FILE>``
  Local file that contains disk image to be uploaded
  during creation. Alternatively, the image data can be
  passed to the client via stdin.

``--progress``
  Show upload progress bar.

.. _glance_image-deactivate:

glance image-deactivate
-----------------------

.. code-block:: console

   usage: glance image-deactivate <IMAGE_ID>

Deactivate specified image.

**Positional arguments:**

``<IMAGE_ID>``
  ID of image to deactivate.

.. _glance_image-delete:

glance image-delete
-------------------

.. code-block:: console

   usage: glance image-delete <IMAGE_ID> [<IMAGE_ID> ...]

Delete specified image.

**Positional arguments:**

``<IMAGE_ID>``
  ID of image(s) to delete.

.. _glance_image-download:

glance image-download
---------------------

.. code-block:: console

   usage: glance image-download [--file <FILE>] [--progress] <IMAGE_ID>

Download a specific image.

**Positional arguments:**

``<IMAGE_ID>``
  ID of image to download.

**Optional arguments:**

``--file <FILE>``
  Local file to save downloaded image data to. If this is not
  specified and there is no redirection the image data will not
  be saved.

``--progress``
  Show download progress bar.

.. _glance_image-list:

glance image-list
-----------------

.. code-block:: console

   usage: glance image-list [--limit <LIMIT>] [--page-size <SIZE>]
                            [--visibility <VISIBILITY>]
                            [--member-status <MEMBER_STATUS>] [--owner <OWNER>]
                            [--property-filter <KEY=VALUE>]
                            [--checksum <CHECKSUM>] [--tag <TAG>]
                            [--sort-key {name,status,container_format,disk_format,size,id,created_at,updated_at}]
                            [--sort-dir {asc,desc}] [--sort <key>[:<direction>]]

List images you can access.

**Optional arguments:**

``--limit <LIMIT>``
  Maximum number of images to get.

``--page-size <SIZE>``
  Number of images to request in each paginated request.

``--visibility <VISIBILITY>``
  The visibility of the images to display.

``--member-status <MEMBER_STATUS>``
  The status of images to display.

``--owner <OWNER>``
  Display images owned by <OWNER>.

``--property-filter <KEY=VALUE>``
  Filter images by a user-defined image property.

``--checksum <CHECKSUM>``
  Displays images that match the MD5 checksum.

``--tag <TAG>``
  Filter images by a user-defined tag.

``--sort-key {name,status,container_format,disk_format,size,id,created_at,updated_at}``
  Sort image list by specified fields. May be used
  multiple times.

``--sort-dir {asc,desc}``
  Sort image list in specified directions.

``--sort <key>[:<direction>]``
  Comma-separated list of sort keys and directions in
  the form of <key>[:<asc|desc>]. Valid keys: name,
  status, container_format, disk_format, size, id,
  created_at, updated_at. OPTIONAL.

.. _glance_image-reactivate:

glance image-reactivate
-----------------------

.. code-block:: console

   usage: glance image-reactivate <IMAGE_ID>

Reactivate specified image.

**Positional arguments:**

``<IMAGE_ID>``
  ID of image to reactivate.

.. _glance_image-show:

glance image-show
-----------------

.. code-block:: console

   usage: glance image-show [--human-readable] [--max-column-width <integer>]
                            <IMAGE_ID>

Describe a specific image.

**Positional arguments:**

``<IMAGE_ID>``
  ID of image to describe.

**Optional arguments:**

``--human-readable``
  Print image size in a human-friendly format.

``--max-column-width <integer>``
  The max column width of the printed table.

.. _glance_image-tag-delete:

glance image-tag-delete
-----------------------

.. code-block:: console

   usage: glance image-tag-delete <IMAGE_ID> <TAG_VALUE>

Delete the tag associated with the given image.

**Positional arguments:**

``<IMAGE_ID>``
  ID of the image from which to delete tag.

``<TAG_VALUE>``
  Value of the tag.

.. _glance_image-tag-update:

glance image-tag-update
-----------------------

.. code-block:: console

   usage: glance image-tag-update <IMAGE_ID> <TAG_VALUE>

Update an image with the given tag.

**Positional arguments:**

``<IMAGE_ID>``
  Image to be updated with the given tag.

``<TAG_VALUE>``
  Value of the tag.

.. _glance_image-update:

glance image-update
-------------------

.. code-block:: console

   usage: glance image-update [--architecture <ARCHITECTURE>]
                              [--protected [True|False]] [--name <NAME>]
                              [--instance-uuid <INSTANCE_UUID>]
                              [--min-disk <MIN_DISK>] [--visibility <VISIBILITY>]
                              [--kernel-id <KERNEL_ID>]
                              [--os-version <OS_VERSION>]
                              [--disk-format <DISK_FORMAT>]
                              [--os-distro <OS_DISTRO>] [--owner <OWNER>]
                              [--ramdisk-id <RAMDISK_ID>] [--min-ram <MIN_RAM>]
                              [--container-format <CONTAINER_FORMAT>]
                              [--property <key=value>] [--remove-property key]
                              <IMAGE_ID>

Update an existing image.

**Positional arguments:**

``<IMAGE_ID>``
  ID of image to update.

**Optional arguments:**

``--architecture <ARCHITECTURE>``
  Operating system architecture as specified in
  https://docs.openstack.org/glance/latest/user/common-image-properties.html#architecture

``--protected [True|False]``
  If true, image will not be deletable.

``--name <NAME>``
  Descriptive name for the image

``--instance-uuid <INSTANCE_UUID>``
  Metadata which can be used to record which instance
  this image is associated with. (Informational only,
  does not create an instance snapshot.)

``--min-disk <MIN_DISK>``
  Amount of disk space (in GB) required to boot image.

``--visibility <VISIBILITY>``
  Scope of image accessibility Valid values: public,
  private, community, shared

``--kernel-id <KERNEL_ID>``
  ID of image stored in Glance that should be used as
  the kernel when booting an AMI-style image.

``--os-version <OS_VERSION>``
  Operating system version as specified by the
  distributor

``--disk-format <DISK_FORMAT>``
  Format of the disk Valid values: None, ami, ari, aki,
  vhd, vhdx, vmdk, raw, qcow2, vdi, iso, ploop

``--os-distro <OS_DISTRO>``
  Common name of operating system distribution as
  specified
  in
  https://docs.openstack.org/glance/latest/user/common-image-properties.html#os-distro

``--owner <OWNER>``
  Owner of the image

``--ramdisk-id <RAMDISK_ID>``
  ID of image stored in Glance that should be used as
  the ramdisk when booting an AMI-style image.

``--min-ram <MIN_RAM>``
  Amount of ram (in MB) required to boot image.

``--container-format <CONTAINER_FORMAT>``
  Format of the container Valid values: None, ami, ari,
  aki, bare, ovf, ova, docker

``--property <key=value>``
  Arbitrary property to associate with image. May be
  used multiple times.

``--remove-property``
  key
  Name of arbitrary property to remove from the image.

.. _glance_image-upload:

glance image-upload
-------------------

.. code-block:: console

   usage: glance image-upload [--file <FILE>] [--size <IMAGE_SIZE>] [--progress]
                              <IMAGE_ID>

Upload data for a specific image.

**Positional arguments:**

``<IMAGE_ID>``
  ID of image to upload data to.

**Optional arguments:**

``--file <FILE>``
  Local file that contains disk image to be uploaded.
  Alternatively, images can be passed to the client via
  stdin.

``--size <IMAGE_SIZE>``
  Size in bytes of image to be uploaded. Default is to
  get size from provided data object but this is
  supported in case where size cannot be inferred.

``--progress``
  Show upload progress bar.

.. _glance_import-info:

glance import-info
------------------

.. code-block:: console

   usage: glance import-info

Prints the import methods available from Glance, or a message
if the target Glance does not support image import.

.. _glance_image-stage:

glance image-stage
------------------

.. code-block:: console

   usage: glance image-stage [--file <FILE>] [--size <IMAGE_SIZE>]
                             [--progress]
                             <IMAGE_ID>

Upload data for a specific image to staging.

**Positional arguments:**

``<IMAGE_ID>``
  ID of image to upload data to.

**Optional arguments:**

``--file <FILE>``
  Local file that contains disk image to be uploaded.
  Alternatively, images can be passed to the client via
  stdin.

``--size <IMAGE_SIZE>``
  Size in bytes of image to be uploaded.  Default is to get size from
  provided data object but this is supported in case where size cannot
  be inferred.

``--progress``
  Show upload progress bar.

.. _glance_image-import:

glance image-import
-------------------

.. code-block:: console

   usage: glance image-import [--import-method <METHOD>]
                              [--uri <IMAGE_URL>]
                              [--store <STORE>] [--stores <STORES>]
                              [--all-stores [True|False]]
                              [--allow-failure [True|False]]
                              <IMAGE_ID>

Initiate the image import taskflow.

**Positional arguments:**

``<IMAGE_ID>``
  ID of image to import.

**Optional arguments:**

``--import-method <METHOD>``
  Import method used for Image Import workflow.  Valid values can
  be retrieved with import-info command and the default "glance-direct"
  is used with "image-stage".

``--uri <IMAGE_URL>``
  URI to download the external image

``--store <STORE>``
  Backend store to upload image to.

``--stores <STORES>``
  List of comma separated stores to upload image if multi-stores are
  enabled in the environment.

``--all-stores [True|False]``
  "all-stores" can be used instead of "--stores <STORES>" to indicate
  that image should be imported all available stores.

``--allow-failure [True|False]``
  Indicator if all stores listed (or available) must
  succeed. "True" by default meaning that we allow some
  stores to fail and the status can be monitored from
  the image metadata. If this is set to "False" the
  import will be reverted should any of the uploads
  fail. Only usable with "stores" or "all-stores".


.. _glance_image-create-via-import:

glance image-create-via-import
------------------------------

This is an **EXPERIMENTAL** command.  It may be renamed or removed in
future releases.

.. code-block:: console

   usage: glance image-create-via import [--architecture <ARCHITECTURE>]
                                         [--protected [True|False]] [--name <NAME>]
                                         [--instance-uuid <INSTANCE_UUID>]
                                         [--min-disk <MIN_DISK>] [--visibility <VISIBILITY>]
                                         [--kernel-id <KERNEL_ID>]
                                         [--tags <TAGS> [<TAGS> ...]]
                                         [--os-version <OS_VERSION>]
                                         [--disk-format <DISK_FORMAT>]
                                         [--os-distro <OS_DISTRO>] [--id <ID>]
                                         [--owner <OWNER>] [--ramdisk-id <RAMDISK_ID>]
                                         [--min-ram <MIN_RAM>]
                                         [--container-format <CONTAINER_FORMAT>]
                                         [--property <key=value>] [--file <FILE>]
                                         [--progress]

Create a new image using the image import process.

**NOTE** This is an EXPERIMENTAL command.  It may be renamed or removed in
future releases.

**Optional arguments:**

``--architecture <ARCHITECTURE>``
  Operating system architecture as specified in
  https://docs.openstack.org/glance/latest/user/common-image-properties.html#architecture

``--protected [True|False]``
  If true, image will not be deletable.

``--name <NAME>``
  Descriptive name for the image

``--instance-uuid <INSTANCE_UUID>``
  Metadata which can be used to record which instance
  this image is associated with. (Informational only,
  does not create an instance snapshot.)

``--min-disk <MIN_DISK>``
  Amount of disk space (in GB) required to boot image.

``--visibility <VISIBILITY>``
  Scope of image accessibility Valid values: public,
  private, community, shared

``--kernel-id <KERNEL_ID>``
  ID of image stored in Glance that should be used as
  the kernel when booting an AMI-style image.

``--tags <TAGS> [<TAGS> ...]``
  List of strings related to the image

``--os-version <OS_VERSION>``
  Operating system version as specified by the
  distributor

``--disk-format <DISK_FORMAT>``
  Format of the disk Valid values: None, ami, ari, aki,
  vhd, vhdx, vmdk, raw, qcow2, vdi, iso, ploop

``--os-distro <OS_DISTRO>``
  Common name of operating system distribution as
  specified
  in
  https://docs.openstack.org/glance/latest/user/common-image-properties.html#os-distro

``--id <ID>``
  An identifier for the image

``--owner <OWNER>``
  Owner of the image

``--ramdisk-id <RAMDISK_ID>``
  ID of image stored in Glance that should be used as
  the ramdisk when booting an AMI-style image.

``--min-ram <MIN_RAM>``
  Amount of ram (in MB) required to boot image.

``--container-format <CONTAINER_FORMAT>``
  Format of the container Valid values: None, ami, ari,
  aki, bare, ovf, ova, docker

``--property <key=value>``
  Arbitrary property to associate with image. May be
  used multiple times.

``--file <FILE>``
  Local file that contains disk image to be uploaded
  during creation. Alternatively, the image data can be
  passed to the client via stdin.

``--progress``
  Show upload progress bar.

.. _glance_location-add:

glance location-add
-------------------

.. code-block:: console

   usage: glance location-add --url <URL> [--metadata <STRING>] <IMAGE_ID>

Add a location (and related metadata) to an image.

**Positional arguments:**

``<IMAGE_ID>``
  ID of image to which the location is to be added.

**Optional arguments:**

``--url <URL>``
  URL of location to add.

``--metadata <STRING>``
  Metadata associated with the location. Must be a valid
  JSON object (default: {})

.. _glance_location-delete:

glance location-delete
----------------------

.. code-block:: console

   usage: glance location-delete --url <URL> <IMAGE_ID>

Remove locations (and related metadata) from an image.

**Positional arguments:**

``<IMAGE_ID>``
  ID of image whose locations are to be removed.

**Optional arguments:**

``--url <URL>``
  URL of location to remove. May be used multiple times.

.. _glance_location-update:

glance location-update
----------------------

.. code-block:: console

   usage: glance location-update --url <URL> [--metadata <STRING>] <IMAGE_ID>

Update metadata of an image's location.

**Positional arguments:**

``<IMAGE_ID>``
  ID of image whose location is to be updated.

**Optional arguments:**

``--url <URL>``
  URL of location to update.

``--metadata <STRING>``
  Metadata associated with the location. Must be a valid
  JSON object (default: {})

.. _glance_md-namespace-create:

glance md-namespace-create
--------------------------

.. code-block:: console

   usage: glance md-namespace-create [--schema <SCHEMA>]
                                     [--created-at <CREATED_AT>]
                                     [--resource-type-associations <RESOURCE_TYPE_ASSOCIATIONS> [<RESOURCE_TYPE_ASSOCIATIONS> ...]]
                                     [--protected [True|False]] [--self <SELF>]
                                     [--display-name <DISPLAY_NAME>]
                                     [--owner <OWNER>]
                                     [--visibility <VISIBILITY>]
                                     [--updated-at <UPDATED_AT>]
                                     [--description <DESCRIPTION>]
                                     <NAMESPACE>

Create a new metadata definitions namespace.

**Positional arguments:**

``<NAMESPACE>``
  Name of the namespace.

**Optional arguments:**

``--schema <SCHEMA>``

``--created-at <CREATED_AT>``
  Date and time of namespace creation.

``--resource-type-associations <RESOURCE_TYPE_ASSOCIATIONS> [...]``

``--protected [True|False]``
  If true, namespace will not be deletable.

``--self <SELF>``

``--display-name <DISPLAY_NAME>``
  The user friendly name for the namespace. Used by UI
  if available.

``--owner <OWNER>``
  Owner of the namespace.

``--visibility <VISIBILITY>``
  Scope of namespace accessibility. Valid values:
  public, private

``--updated-at <UPDATED_AT>``
  Date and time of the last namespace modification.

``--description <DESCRIPTION>``
  Provides a user friendly description of the namespace.

.. _glance_md-namespace-delete:

glance md-namespace-delete
--------------------------

.. code-block:: console

   usage: glance md-namespace-delete <NAMESPACE>

Delete specified metadata definitions namespace with its contents.

**Positional arguments:**

``<NAMESPACE>``
  Name of namespace to delete.

.. _glance_md-namespace-import:

glance md-namespace-import
--------------------------

.. code-block:: console

   usage: glance md-namespace-import [--file <FILEPATH>]

Import a metadata definitions namespace from file or standard input.

**Optional arguments:**

``--file <FILEPATH>``
  Path to file with namespace schema to import.
  Alternatively, namespaces schema can be passed to the
  client via stdin.

.. _glance_md-namespace-list:

glance md-namespace-list
------------------------

.. code-block:: console

   usage: glance md-namespace-list [--resource-types <RESOURCE_TYPES>]
                                   [--visibility <VISIBILITY>]
                                   [--page-size <SIZE>]

List metadata definitions namespaces.

**Optional arguments:**

``--resource-types <RESOURCE_TYPES>``
  Resource type to filter namespaces.

``--visibility <VISIBILITY>``
  Visibility parameter to filter namespaces.

``--page-size <SIZE>``
  Number of namespaces to request in each paginated
  request.

.. _glance_md-namespace-objects-delete:

glance md-namespace-objects-delete
----------------------------------

.. code-block:: console

   usage: glance md-namespace-objects-delete <NAMESPACE>

Delete all metadata definitions objects inside a specific namespace.

**Positional arguments:**

``<NAMESPACE>``
  Name of namespace.

.. _glance_md-namespace-properties-delete:

glance md-namespace-properties-delete
-------------------------------------

.. code-block:: console

   usage: glance md-namespace-properties-delete <NAMESPACE>

Delete all metadata definitions property inside a specific namespace.

**Positional arguments:**

``<NAMESPACE>``
  Name of namespace.

.. _glance_md-namespace-resource-type-list:

glance md-namespace-resource-type-list
--------------------------------------

.. code-block:: console

   usage: glance md-namespace-resource-type-list <NAMESPACE>

List resource types associated to specific namespace.

**Positional arguments:**

``<NAMESPACE>``
  Name of namespace.

.. _glance_md-namespace-show:

glance md-namespace-show
------------------------

.. code-block:: console

   usage: glance md-namespace-show [--resource-type <RESOURCE_TYPE>]
                                   [--max-column-width <integer>]
                                   <NAMESPACE>

Describe a specific metadata definitions namespace. Lists also the namespace
properties, objects and resource type associations.

**Positional arguments:**

``<NAMESPACE>``
  Name of namespace to describe.

**Optional arguments:**

``--resource-type <RESOURCE_TYPE>``
  Applies prefix of given resource type associated to a
  namespace to all properties of a namespace.

``--max-column-width <integer>``
  The max column width of the printed table.

.. _glance_md-namespace-tags-delete:

glance md-namespace-tags-delete
-------------------------------

.. code-block:: console

   usage: glance md-namespace-tags-delete <NAMESPACE>

Delete all metadata definitions tags inside a specific namespace.

**Positional arguments:**

``<NAMESPACE>``
  Name of namespace.

.. _glance_md-namespace-update:

glance md-namespace-update
--------------------------

.. code-block:: console

   usage: glance md-namespace-update [--created-at <CREATED_AT>]
                                     [--protected [True|False]]
                                     [--namespace <NAMESPACE>] [--self <SELF>]
                                     [--display-name <DISPLAY_NAME>]
                                     [--owner <OWNER>]
                                     [--visibility <VISIBILITY>]
                                     [--updated-at <UPDATED_AT>]
                                     [--description <DESCRIPTION>]
                                     <NAMESPACE>

Update an existing metadata definitions namespace.

**Positional arguments:**

``<NAMESPACE>``
  Name of namespace to update.

**Optional arguments:**

``--created-at <CREATED_AT>``
  Date and time of namespace creation.

``--protected [True|False]``
  If true, namespace will not be deletable.

``--namespace <NAMESPACE>``
  The unique namespace text.

``--self <SELF>``

``--display-name <DISPLAY_NAME>``
  The user friendly name for the namespace. Used by UI
  if available.

``--owner <OWNER>``
  Owner of the namespace.

``--visibility <VISIBILITY>``
  Scope of namespace accessibility. Valid values:
  public, private

``--updated-at <UPDATED_AT>``
  Date and time of the last namespace modification.

``--description <DESCRIPTION>``
  Provides a user friendly description of the namespace.

.. _glance_md-object-create:

glance md-object-create
-----------------------

.. code-block:: console

   usage: glance md-object-create --name <NAME> --schema <SCHEMA> <NAMESPACE>

Create a new metadata definitions object inside a namespace.

**Positional arguments:**

``<NAMESPACE>``
  Name of namespace the object will belong.

**Optional arguments:**

``--name <NAME>``
  Internal name of an object.

``--schema <SCHEMA>``
  Valid JSON schema of an object.

.. _glance_md-object-delete:

glance md-object-delete
-----------------------

.. code-block:: console

   usage: glance md-object-delete <NAMESPACE> <OBJECT>

Delete a specific metadata definitions object inside a namespace.

**Positional arguments:**

``<NAMESPACE>``
  Name of namespace the object belongs.

``<OBJECT>``
  Name of an object.

.. _glance_md-object-list:

glance md-object-list
---------------------

.. code-block:: console

   usage: glance md-object-list <NAMESPACE>

List metadata definitions objects inside a specific namespace.

**Positional arguments:**

``<NAMESPACE>``
  Name of namespace.

.. _glance_md-object-property-show:

glance md-object-property-show
------------------------------

.. code-block:: console

   usage: glance md-object-property-show [--max-column-width <integer>]
                                         <NAMESPACE> <OBJECT> <PROPERTY>

Describe a specific metadata definitions property inside an object.

**Positional arguments:**

``<NAMESPACE>``
  Name of namespace the object belongs.

``<OBJECT>``
  Name of an object.

``<PROPERTY>``
  Name of a property.

**Optional arguments:**

``--max-column-width <integer>``
  The max column width of the printed table.

.. _glance_md-object-show:

glance md-object-show
---------------------

.. code-block:: console

   usage: glance md-object-show [--max-column-width <integer>]
                                <NAMESPACE> <OBJECT>

Describe a specific metadata definitions object inside a namespace.

**Positional arguments:**

``<NAMESPACE>``
  Name of namespace the object belongs.

``<OBJECT>``
  Name of an object.

**Optional arguments:**

``--max-column-width <integer>``
  The max column width of the printed table.

.. _glance_md-object-update:

glance md-object-update
-----------------------

.. code-block:: console

   usage: glance md-object-update [--name <NAME>] [--schema <SCHEMA>]
                                  <NAMESPACE> <OBJECT>

Update metadata definitions object inside a namespace.

**Positional arguments:**

``<NAMESPACE>``
  Name of namespace the object belongs.

``<OBJECT>``
  Name of an object.

**Optional arguments:**

``--name <NAME>``
  New name of an object.

``--schema <SCHEMA>``
  Valid JSON schema of an object.

.. _glance_md-property-create:

glance md-property-create
-------------------------

.. code-block:: console

   usage: glance md-property-create --name <NAME> --title <TITLE> --schema
                                    <SCHEMA>
                                    <NAMESPACE>

Create a new metadata definitions property inside a namespace.

**Positional arguments:**

``<NAMESPACE>``
  Name of namespace the property will belong.

**Optional arguments:**

``--name <NAME>``
  Internal name of a property.

``--title <TITLE>``
  Property name displayed to the user.

``--schema <SCHEMA>``
  Valid JSON schema of a property.

.. _glance_md-property-delete:

glance md-property-delete
-------------------------

.. code-block:: console

   usage: glance md-property-delete <NAMESPACE> <PROPERTY>

Delete a specific metadata definitions property inside a namespace.

**Positional arguments:**

``<NAMESPACE>``
  Name of namespace the property belongs.

``<PROPERTY>``
  Name of a property.

.. _glance_md-property-list:

glance md-property-list
-----------------------

.. code-block:: console

   usage: glance md-property-list <NAMESPACE>

List metadata definitions properties inside a specific namespace.

**Positional arguments:**

``<NAMESPACE>``
  Name of namespace.

.. _glance_md-property-show:

glance md-property-show
-----------------------

.. code-block:: console

   usage: glance md-property-show [--max-column-width <integer>]
                                  <NAMESPACE> <PROPERTY>

Describe a specific metadata definitions property inside a namespace.

**Positional arguments:**

``<NAMESPACE>``
  Name of namespace the property belongs.

``<PROPERTY>``
  Name of a property.

**Optional arguments:**

``--max-column-width <integer>``
  The max column width of the printed table.

.. _glance_md-property-update:

glance md-property-update
-------------------------

.. code-block:: console

   usage: glance md-property-update [--name <NAME>] [--title <TITLE>]
                                    [--schema <SCHEMA>]
                                    <NAMESPACE> <PROPERTY>

Update metadata definitions property inside a namespace.

**Positional arguments:**

``<NAMESPACE>``
  Name of namespace the property belongs.

``<PROPERTY>``
  Name of a property.

**Optional arguments:**

``--name <NAME>``
  New name of a property.

``--title <TITLE>``
  Property name displayed to the user.

``--schema <SCHEMA>``
  Valid JSON schema of a property.

.. _glance_md-resource-type-associate:

glance md-resource-type-associate
---------------------------------

.. code-block:: console

   usage: glance md-resource-type-associate [--updated-at <UPDATED_AT>]
                                            [--name <NAME>]
                                            [--properties-target <PROPERTIES_TARGET>]
                                            [--prefix <PREFIX>]
                                            [--created-at <CREATED_AT>]
                                            <NAMESPACE>

Associate resource type with a metadata definitions namespace.

**Positional arguments:**

``<NAMESPACE>``
  Name of namespace.

**Optional arguments:**

``--updated-at <UPDATED_AT>``
  Date and time of the last resource type association
  modification.

``--name <NAME>``
  Resource type names should be aligned with Heat
  resource types whenever possible:
  https://docs.openstack.org/heat/latest/template_guide/openstack.html

``--properties-target <PROPERTIES_TARGET>``
  Some resource types allow more than one key / value
  pair per instance. For example, Cinder allows user and
  image metadata on volumes. Only the image properties
  metadata is evaluated by Nova (scheduling or drivers).
  This property allows a namespace target to remove the
  ambiguity.

``--prefix <PREFIX>``
  Specifies the prefix to use for the given resource
  type. Any properties in the namespace should be
  prefixed with this prefix when being applied to the
  specified resource type. Must include prefix separator
  (e.g. a colon :).

``--created-at <CREATED_AT>``
  Date and time of resource type association.

.. _glance_md-resource-type-deassociate:

glance md-resource-type-deassociate
-----------------------------------

.. code-block:: console

   usage: glance md-resource-type-deassociate <NAMESPACE> <RESOURCE_TYPE>

Deassociate resource type with a metadata definitions namespace.

**Positional arguments:**

``<NAMESPACE>``
  Name of namespace.

``<RESOURCE_TYPE>``
  Name of resource type.

.. _glance_md-resource-type-list:

glance md-resource-type-list
----------------------------

.. code-block:: console

   usage: glance md-resource-type-list

List available resource type names.

.. _glance_md-tag-create:

glance md-tag-create
--------------------

.. code-block:: console

   usage: glance md-tag-create --name <NAME> <NAMESPACE>

Add a new metadata definitions tag inside a namespace.

**Positional arguments:**

``<NAMESPACE>``
  Name of the namespace the tag will belong to.

**Optional arguments:**

``--name <NAME>``
  The name of the new tag to add.

.. _glance_md-tag-create-multiple:

glance md-tag-create-multiple
-----------------------------

.. code-block:: console

   usage: glance md-tag-create-multiple --names <NAMES> [--delim <DELIM>]
                                        <NAMESPACE>

Create new metadata definitions tags inside a namespace.

**Positional arguments:**

``<NAMESPACE>``
  Name of the namespace the tags will belong to.

**Optional arguments:**

``--names <NAMES>``
  A comma separated list of tag names.

``--delim <DELIM>``
  The delimiter used to separate the names (if none is
  provided then the default is a comma).

.. _glance_md-tag-delete:

glance md-tag-delete
--------------------

.. code-block:: console

   usage: glance md-tag-delete <NAMESPACE> <TAG>

Delete a specific metadata definitions tag inside a namespace.

**Positional arguments:**

``<NAMESPACE>``
  Name of the namespace to which the tag belongs.

``<TAG>``
  Name of the tag.

.. _glance_md-tag-list:

glance md-tag-list
------------------

.. code-block:: console

   usage: glance md-tag-list <NAMESPACE>

List metadata definitions tags inside a specific namespace.

**Positional arguments:**

``<NAMESPACE>``
  Name of namespace.

.. _glance_md-tag-show:

glance md-tag-show
------------------

.. code-block:: console

   usage: glance md-tag-show <NAMESPACE> <TAG>

Describe a specific metadata definitions tag inside a namespace.

**Positional arguments:**

``<NAMESPACE>``
  Name of the namespace to which the tag belongs.

``<TAG>``
  Name of the tag.

.. _glance_md-tag-update:

glance md-tag-update
--------------------

.. code-block:: console

   usage: glance md-tag-update --name <NAME> <NAMESPACE> <TAG>

Rename a metadata definitions tag inside a namespace.

**Positional arguments:**

``<NAMESPACE>``
  Name of the namespace to which the tag belongs.

``<TAG>``
  Name of the old tag.

**Optional arguments:**

``--name <NAME>``
  New name of the new tag.

.. _glance_member-create:

glance member-create
--------------------

.. code-block:: console

   usage: glance member-create <IMAGE_ID> <MEMBER_ID>

Create member for a given image.

**Positional arguments:**

``<IMAGE_ID>``
  Image with which to create member.

``<MEMBER_ID>``
  Tenant to add as member.

.. _glance_member-delete:

glance member-delete
--------------------

.. code-block:: console

   usage: glance member-delete <IMAGE_ID> <MEMBER_ID>

Delete image member.

**Positional arguments:**

``<IMAGE_ID>``
  Image from which to remove member.

``<MEMBER_ID>``
  Tenant to remove as member.

.. _glance_member-list:

glance member-list
------------------

.. code-block:: console

   usage: glance member-list --image-id <IMAGE_ID>

Describe sharing permissions by image.

**Optional arguments:**

``--image-id <IMAGE_ID>``
  Image to display members of.

.. _glance_member-update:

glance member-update
--------------------

.. code-block:: console

   usage: glance member-update <IMAGE_ID> <MEMBER_ID> <MEMBER_STATUS>

Update the status of a member for a given image.

**Positional arguments:**

``<IMAGE_ID>``
  Image from which to update member.

``<MEMBER_ID>``
  Tenant to update.

``<MEMBER_STATUS>``
  Updated status of member. Valid Values: accepted, rejected,
  pending

.. _glance_task-create:

glance task-create
------------------

.. code-block:: console

   usage: glance task-create [--type <TYPE>] [--input <STRING>]

Create a new task.

**Optional arguments:**

``--type <TYPE>``
  Type of Task. Please refer to Glance schema or
  documentation to see which tasks are supported.

``--input <STRING>``
  Parameters of the task to be launched

.. _glance_task-list:

glance task-list
----------------

.. code-block:: console

   usage: glance task-list [--sort-key {id,type,status}] [--sort-dir {asc,desc}]
                           [--page-size <SIZE>] [--type <TYPE>]
                           [--status <STATUS>]

List tasks you can access.

**Optional arguments:**

``--sort-key {id,type,status}``
  Sort task list by specified field.

``--sort-dir {asc,desc}``
  Sort task list in specified direction.

``--page-size <SIZE>``
  Number of tasks to request in each paginated request.

``--type <TYPE>``
  Filter tasks to those that have this type.

``--status <STATUS>``
  Filter tasks to those that have this status.

.. _glance_task-show:

glance task-show
----------------

.. code-block:: console

   usage: glance task-show <TASK_ID>

Describe a specific task.

**Positional arguments:**

``<TASK_ID>``
  ID of task to describe.