From 00aa11bbfb077b9a1478dbd306aea5baf82c328d Mon Sep 17 00:00:00 2001 From: "Austin S. Hemmelgarn" <austin@netdata.cloud> Date: Tue, 25 Jul 2023 12:59:36 -0400 Subject: [PATCH] Add quick_start key to deploy schema. (#15522) Merging this one as well. --- integrations/deploy.yaml | 2 ++ integrations/schemas/deploy.json | 7 ++++++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/integrations/deploy.yaml b/integrations/deploy.yaml index b597e3c952..8747a2025c 100644 --- a/integrations/deploy.yaml +++ b/integrations/deploy.yaml @@ -36,6 +36,7 @@ platform_info: group: '' distro: '' + quick_start: 1 - <<: *linux id: deploy-ubuntu meta: @@ -46,3 +47,4 @@ platform_info: group: 'include' distro: 'ubuntu' + quick_start: -1 diff --git a/integrations/schemas/deploy.json b/integrations/schemas/deploy.json index cda40fffee..fc07c6a334 100644 --- a/integrations/schemas/deploy.json +++ b/integrations/schemas/deploy.json @@ -91,6 +91,10 @@ "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": [ @@ -101,7 +105,8 @@ "methods", "additional_info", "related_resources", - "platform_info" + "platform_info", + "quick_start" ] } }