isulad-daemon-configs.json 3.6 KB
Newer Older
H
haozi007 已提交
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
{
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "properties": {
        "hosts": {
            "type": "ArrayOfStrings"
        },
        "default-runtime": {
            "type": "string"
        },
        "group": {
            "type": "string"
        },
        "graph": {
            "type": "string"
        },
        "state": {
            "type": "string"
        },
        "log-level": {
            "type": "string"
        },
        "log-driver": {
            "type": "string"
        },
        "log-opts": {
            "$ref": "defs.json#/definitions/mapStringString"
        },
        "storage-driver": {
            "type": "string"
        },
        "storage-opts": {
            "type": "ArrayOfStrings"
        },
        "pidfile": {
            "type": "string"
        },
        "engine": {
            "type": "string"
        },
        "hook-spec": {
            "type": "string"
        },
        "start-timeout": {
            "type": "string"
        },
        "enable-plugins": {
            "type": "string"
        },
        "cpu-rt-period": {
            "type": "int64"
        },
        "cpu-rt-runtime": {
            "type": "int64"
        },
        "registry-mirrors": {
            "type": "ArrayOfStrings"
        },
        "insecure-registries": {
            "type": "ArrayOfStrings"
        },
        "native.umask": {
            "type": "string"
        },
        "pod-sandbox-image": {
            "type": "string"
        },
        "image_service": {
            "type": "boolean"
        },
        "rootfsmntdir": {
            "type": "string"
        },
        "network-plugin": {
            "type": "string"
        },
        "cni-bin-dir": {
            "type": "string"
        },
        "cni-conf-dir": {
            "type": "string"
        },
        "image-layer-check": {
            "type": "boolean"
        },
        "use-decrypted-key": {
            "type": "booleanPointer"
        },
        "insecure-skip-verify-enforce": {
            "type": "boolean"
        },
        "tls": {
            "type": "boolean"
        },
        "tls-verify": {
            "type": "boolean"
        },
        "tls-config": {
            "type": "object",
            "properties": {
                "CAFile": {
                    "type": "string"
                },
                "CertFile": {
                    "type": "string"
                },
                "KeyFile": {
                    "type": "string"
                }
            }
        },
        "authorization-plugin": {
            "type": "string"
        },
        "cgroup-parent": {
            "type": "string"
        },
        "websocket-server-listening-port": {
            "type": "int32"
        },
        "default-ulimits": {
            "type": "object",
            "patternProperties": {
                ".{1,}": {
                    "type": "object",
                    "required": [
                        "Name",
                        "Hard",
                        "Soft"
                    ],
                    "properties": {
                        "Name": {
                            "type": "string"
                        },
                        "Hard": {
                            "type": "int64"
                        },
                        "Soft": {
                            "type": "int64"
                        }
                    }
                }
            }
        },
        "runtimes": {
            "$ref": "defs.json#/definitions/mapStringObjectRuntimes"
        },
148
        "selinux-enabled": {
H
haozi007 已提交
149 150 151
            "type": "boolean"
        }
    }
152
}