-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathadminDash.json
125 lines (125 loc) · 4.15 KB
/
adminDash.json
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "Dashboard",
"icon": "cloudify-dashboard",
"layout": [
{
"type": "widgets",
"content": [
{
"width": 3,
"height": 8,
"definition": "cloudNum",
"x": 0,
"y": 3,
"configuration": {
"icon": "",
"imageSrc": "/console/static/images/clouds.png"
}
},
{
"width": 3,
"height": 8,
"definition": "deploymentNum",
"x": 3,
"y": 3,
"configuration": {
"icon": "",
"imageSrc": "/console/static/images/services.png",
"label": "Services",
"page": "services",
"filterId": "csys-service-filter"
}
},
{
"width": 3,
"height": 8,
"definition": "deploymentNum",
"x": 6,
"y": 3,
"configuration": {
"icon": "",
"imageSrc": "/console/static/images/k8s_logo.png",
"label": "Kubernetes clusters",
"page": "services",
"filterId": "csys-k8s-filter"
}
},
{
"width": 3,
"height": 8,
"definition": "deploymentNum",
"x": 9,
"y": 3,
"configuration": {
"icon": "",
"imageSrc": "/console/static/images/terraform_logo.png",
"label": "Terraform modules",
"page": "services",
"filterId": "csys-terraform-filter"
}
},
{
"width": 3,
"height": 3,
"definition": "cloudButton",
"x": 0,
"y": 0
},
{
"width": 3,
"height": 3,
"definition": "serviceButton",
"x": 3,
"y": 0,
"configuration": {
"defaultMarketplaceTab": "AWS"
}
},
{
"width": 3,
"height": 3,
"definition": "serviceButton",
"x": 6,
"y": 0,
"configuration": {
"label": "Create Kubernetes cluster",
"defaultMarketplaceTab": "Kubernetes"
}
},
{
"width": 3,
"height": 3,
"definition": "serviceButton",
"x": 9,
"y": 0,
"configuration": {
"label": "Run Terraform module",
"defaultMarketplaceTab": "Terraform"
}
},
{
"definition": "filter",
"x": 0,
"y": 10,
"configuration": {
"filterByDeployments": false,
"filterByExecutions": false,
"allowMultipleSelection": true
}
},
{
"name": "Deployments",
"width": 12,
"height": 42,
"definition": "deployments",
"x": 0,
"y": 38,
"configuration": {
"displayStyle": "list",
"showFirstUserJourneyButtons": true
}
}
]
}
]
}