-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfacets.yaml
31 lines (30 loc) · 876 Bytes
/
facets.yaml
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
spec:
title: Create New Project
$schema: http://json-schema.org/draft-07/schema#
type: object
properties:
projectName:
type: string
title: Project Name
description: What should we call your project?
description:
type: string
title: Description
description: What is your project about? Tell us more...
cloudPlatform:
type: string
title: Picked a cloud yet?
description: Where will your project come to life? Choose your cloud platform.
enum:
- AWS
- Google Cloud
- Azure
- Other
gitOpsEnabled:
type: boolean
title: FYI
description: Boost your project with GitOps. Enhance automation and consistency with this smart feature. Dive into your project settings to enable it!
required:
- projectName
- description
- cloudPlatform