0
0
mirror of https://github.com/netdata/netdata.git synced 2024-12-12 08:07:28 +00:00
netdata_netdata/integrations/schemas/deploy.json
Austin S. Hemmelgarn 8934a18ce4
Add integrations JSON file for website usage. (#15959)
* Add generation of JSON integrations data.

* Clean up generated data for JSON file.

* Properly clean up deploy entry info.

* Fix argument order for regex substitutions.
2023-10-18 11:30:30 -04:00

121 lines
3.8 KiB
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "array",
"title": "Netdata deployment information meta.",
"items": {
"type": "object",
"description": "Individual entries for deployment information.",
"properties": {
"id": {
"$ref": "./shared.json#/$defs/id"
},
"meta": {
"$ref": "./shared.json#/$defs/instance"
},
"keywords": {
"$ref": "./shared.json#/$defs/keywords"
},
"most_popular": {
"type": "boolean",
"description": "If true, the integration is sorted to the top of the list of integrations."
},
"install_description": {
"type": "string",
"description": "Describes basic information about how to deploy on this platform."
},
"methods": {
"type": "array",
"description": "Describes the various ways to deploy on this platform.",
"items": {
"type": "object",
"properties": {
"method": {
"type": "string",
"description": "The name of the installation method."
},
"commands": {
"type": "array",
"items": {
"type": "object",
"properties": {
"channel": {
"type": "string",
"description": "The release channel that this command is used for.",
"enum": [
"nightly",
"stable"
]
},
"command": {
"type": "string",
"description": "The command to run for installing using this method."
}
},
"required": [
"channel",
"command"
]
}
}
},
"required": [
"method",
"commands"
]
}
},
"additional_info": {
"type": "string",
"description": "Any additional information about this platform."
},
"clean_additional_info": {
"type": "string",
"description": "Any additional information about this platform, without any embedded custom tags."
},
"related_resources": {
"type": "object",
"description": "TBD"
},
"platform_info": {
"type": "object",
"description": "References what platform this deployment info is for. In the parsed output, this will be replaced with a markdown string covering basic support information for this platform.",
"properties": {
"group": {
"type": "string",
"description": "Identifies the group that the platform is in. 'include' is used for platforms that are in auto-generated CI. 'no_include' is used for platforms that are not in auto-generated CI. An empty string indicates no associated platform information.",
"enum": [
"include",
"no_include",
""
]
},
"distro": {
"type": "string",
"description": "Identifies the platform within the group, based on the value of the 'distro' key."
}
},
"required": [
"group",
"distro"
]
},
"quick_start": {
"type": "integer",
"description": "Indicates where the deploy integration should appear in the add nodes dialogue. A value less than 0 indicates that it should not appear on this dialogue."
}
},
"required": [
"id",
"meta",
"keywords",
"most_popular",
"install_description",
"methods",
"additional_info",
"related_resources",
"platform_info",
"quick_start"
]
}
}