123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203 |
- {
- "type": "object",
- "additionalProperties": false,
- "properties": {
- "ssh_authorized_keys": {"$ref": "#/definitions/list_of_strings"},
- "write_files": {
- "type": "array",
- "items": {"$ref": "#/definitions/file_config"}
- },
- "hostname": {"type": "string"},
- "mounts": {"type": "array"},
- "rancher": {"$ref": "#/definitions/rancher_config"},
- "runcmd": {"type": "array"},
- "bootcmd": {"type": "array"}
- },
- "definitions": {
- "rancher_config": {
- "id": "#/definitions/rancher_config",
- "type": "object",
- "additionalProperties": false,
- "properties": {
- "console": {"type": "string"},
- "environment": {"type": "object"},
- "cloud_init_services": {"type": "object"},
- "services": {"type": "object"},
- "bootstrap": {"type": "object"},
- "autoformat": {"type": "object"},
- "bootstrap_docker": {"$ref": "#/definitions/docker_config"},
- "cloud_init": {"$ref": "#/definitions/cloud_init_config"},
- "debug": {"type": "boolean"},
- "rm_usr": {"type": "boolean"},
- "no_sharedroot": {"type": "boolean"},
- "log": {"type": "boolean"},
- "force_console_rebuild": {"type": "boolean"},
- "recovery": {"type": "boolean"},
- "disable": {"$ref": "#/definitions/list_of_strings"},
- "services_include": {"type": "object"},
- "modules": {"$ref": "#/definitions/list_of_strings"},
- "network": {"$ref": "#/definitions/network_config"},
- "default_network": {"type": "object"},
- "repositories": {"type": "object"},
- "ssh": {"$ref": "#/definitions/ssh_config"},
- "state": {"$ref": "#/definitions/state_config"},
- "system_docker": {"$ref": "#/definitions/docker_config"},
- "upgrade": {"$ref": "#/definitions/upgrade_config"},
- "docker": {"$ref": "#/definitions/docker_config"},
- "registry_auths": {"type": "object"},
- "defaults": {"$ref": "#/definitions/defaults_config"},
- "resize_device": {"type": "string"},
- "sysctl": {"type": "object"},
- "restart_services": {"type": "array"},
- "hypervisor_service": {"type": "boolean"},
- "shutdown_timeout": {"type": "integer"},
- "preload_wait": {"type": "boolean"}
- }
- },
- "file_config": {
- "id": "#/definitions/file_config",
- "type": "object",
- "additionalProperties": false,
- "properties": {
- "encoding": {"type": "string"},
- "container": {"type": "string"},
- "content": {"type": "string"},
- "owner": {"type": "string"},
- "path": {"type": "string"},
- "permissions": {"type": "string"}
- }
- },
- "network_config": {
- "id": "#/definitions/network_config",
- "type": "object",
- "additionalProperties": false,
- "properties": {
- "pre_cmds": {"$ref": "#/definitions/list_of_strings"},
- "dns": {"type": "object"},
- "interfaces": {"type": "object"},
- "post_cmds": {"$ref": "#/definitions/list_of_strings"},
- "http_proxy": {"type": "string"},
- "https_proxy": {"type": "string"},
- "no_proxy": {"type": "string"}
- }
- },
- "upgrade_config": {
- "id": "#/definitions/upgrade_config",
- "type": "object",
- "additionalProperties": false,
- "properties": {
- "url": {"type": "string"},
- "image": {"type": "string"},
- "rollback": {"type": "string"}
- }
- },
- "docker_config": {
- "id": "#/definitions/docker_config",
- "type": "object",
- "additionalProperties": false,
- "properties": {
- "engine": {"type": "string"},
- "tls": {"type": "boolean"},
- "tls_args": {"$ref": "#/definitions/list_of_strings"},
- "args": {"$ref": "#/definitions/list_of_strings"},
- "extra_args": {"$ref": "#/definitions/list_of_strings"},
- "server_cert": {"type": "string"},
- "server_key": {"type": "string"},
- "ca_cert": {"type": "string"},
- "ca_key": {"type": "string"},
- "environment": {"$ref": "#/definitions/list_of_strings"},
- "storage_context": {"type": "string"},
- "exec": {"type": ["boolean", "null"]},
- "bridge": {"type": "string"},
- "config_file": {"type": "string"},
- "containerd": {"type": "string"},
- "debug": {"type": ["boolean", "null"]},
- "exec_root": {"type": "string"},
- "group": {"type": "string"},
- "graph": {"type": "string"},
- "host": {"type": "array"},
- "live_restore": {"type": ["boolean", "null"]},
- "log_driver": {"type": "string"},
- "log_opts": {"type": "object"},
- "pid_file": {"type": "string"},
- "registry_mirror": {"type": "string"},
- "restart": {"type": ["boolean", "null"]},
- "selinux_enabled": {"type": ["boolean", "null"]},
- "storage_driver": {"type": "string"},
- "userland_proxy": {"type": ["boolean", "null"]},
- "insecure_registry": {"$ref": "#/definitions/list_of_strings"}
- }
- },
- "ssh_config": {
- "id": "#/definitions/ssh_config",
- "type": "object",
- "additionalProperties": false,
- "properties": {
- "keys": {"type": "object"},
- "daemon": {"type": "boolean"}
- }
- },
- "state_config": {
- "id": "#/definitions/state_config",
- "type": "object",
- "additionalProperties": false,
- "properties": {
- "directory": {"type": "string"},
- "fstype": {"type": "string"},
- "dev": {"type": "string"},
- "wait": {"type": "boolean"},
- "required": {"type": "boolean"},
- "autoformat": {"$ref": "#/definitions/list_of_strings"},
- "mdadm_scan": {"type": "boolean"},
- "script": {"type": "string"},
- "oem_fstype": {"type": "string"},
- "oem_dev": {"type": "string"}
- }
- },
- "cloud_init_config": {
- "id": "#/definitions/cloud_init_config",
- "type": "object",
- "additionalProperties": false,
- "properties": {
- "datasources": {"$ref": "#/definitions/list_of_strings"}
- }
- },
- "defaults_config": {
- "id": "#/definitions/defaults_config",
- "type": "object",
- "additionalProperties": false,
- "properties": {
- "hostname": {"type": "string"},
- "docker": {"type": "object"},
- "network": {"$ref": "#/definitions/network_config"}
- }
- },
- "list_of_strings": {
- "type": "array",
- "items": {"type": "string"},
- "uniqueItems": true
- }
- }
- }
|