Add quick_start key to deploy schema. (#15522)
Merging this one as well.
Austin S. Hemmelgarn committed
Jul 25, 2023 at 12:59 UTC
00aa11bbfb077b9a1478dbd306aea5baf82c328d
2 files changed
+8
-1
integrations/deploy.yaml
+2
@@ -36,6 +36,7 @@
36
platform_info:
37
group: ''
38
distro: ''
39
+ quick_start: 1
40
- <<: *linux
41
id: deploy-ubuntu
42
meta:
@@ -46,3 +47,4 @@
47
platform_info:
48
group: 'include'
49
distro: 'ubuntu'
50
+ quick_start: -1
integrations/schemas/deploy.json
+6
-1
@@ -91,6 +91,10 @@
91
"group",
92
"distro"
93
]
94
+ },
95
+ "quick_start": {
96
+ "type": "integer",
97
+ "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."
98
}
99
},
100
"required": [
@@ -101,7 +105,8 @@
105
"methods",
106
"additional_info",
107
"related_resources",
104
- "platform_info"
108
+ "platform_info",
109
+ "quick_start"
110
]
111
}
112
}