This file is indexed.

/etc/glance/metadefs/image-signature-verification.json is in glance-api 2:16.0.0-0ubuntu1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
{
    "namespace": "OS::Glance::Signatures",
    "display_name": "Image Signature Verification",
    "description": "Image signature verification allows the user to verify that an image has not been modified prior to booting the image.",
    "visibility": "public",
    "protected": false,
    "resource_type_associations": [
        {
            "name": "OS::Glance::Image"
        }
    ],
    "properties": {
        "img_signature": {
            "title": "Image Signature",
            "description": "The signature of the image data encoded in base64 format.",
            "type": "string"
        },
        "img_signature_certificate_uuid": {
            "title": "Image Signature Certificate UUID",
            "description": "The UUID used to retrieve the certificate from the key manager.",
            "type": "string"
        },
        "img_signature_hash_method": {
            "title": "Image Signature Hash Method",
            "description": "The hash method used in creating the signature.",
            "type": "string",
            "enum": [
                "SHA-224",
                "SHA-256",
                "SHA-384",
                "SHA-512"
            ]
        },
        "img_signature_key_type": {
            "title": "Image Signature Key Type",
            "description": "The key type used in creating the signature.",
            "type": "string",
            "enum": [
                "RSA-PSS",
                "DSA",
                "ECC_SECT571K1",
                "ECC_SECT409K1",
                "ECC_SECT571R1",
                "ECC_SECT409R1",
                "ECC_SECP521R1",
                "ECC_SECP384R1"
            ]
        }
    }
}