-
Notifications
You must be signed in to change notification settings - Fork 4
/
console-extensions.json
124 lines (124 loc) · 2.93 KB
/
console-extensions.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
/**
* This file declares all extensions contributed by the plugin.
*
* Depending on extension 'type', the 'properties' object may contain code references, encoded
* as object literals { $codeRef: string }. The '$codeRef' value should be formatted as either
* 'moduleName.exportName' (referring to a named export) or 'moduleName' (referring to the
* 'default' export). Only the plugin's exposed modules may be used in code references.
*/
[
{
"type": "console.page/resource/list",
"properties": {
"model": {
"group": "agent-install.openshift.io",
"version": "v1beta1",
"kind": "InfraEnv"
},
"component": {
"$codeRef": "InfraListPage.default"
}
}
},
{
"type": "console.page/resource/details",
"properties": {
"model": {
"group": "agent-install.openshift.io",
"version": "v1beta1",
"kind": "InfraEnv"
},
"component": {
"$codeRef": "InfraEnvDetails.default"
}
}
},
{
"type": "console.resource/create",
"properties": {
"model": {
"group": "agent-install.openshift.io",
"version": "v1beta1",
"kind": "InfraEnv"
},
"component": {
"$codeRef": "InfraEnvForm.default"
}
}
},
{
"type": "console.navigation/resource-ns",
"properties": {
"id": "cim-cluster-deployments",
"name": "Clusters",
"section": "administration",
"model": {
"group": "hive.openshift.io",
"version": "v1",
"kind": "ClusterDeployment"
}
}
},
{
"type": "console.page/resource/details",
"properties": {
"model": {
"group": "hive.openshift.io",
"version": "v1",
"kind": "ClusterDeployment"
},
"component": {
"$codeRef": "ClusterDeploymentDetails.default"
}
}
},
{
"type": "console.page/resource/list",
"properties": {
"model": {
"group": "hive.openshift.io",
"version": "v1",
"kind": "ClusterDeployment"
},
"component": {
"$codeRef": "ClusterDeploymentsListPage.default"
}
}
},
{
"type": "console.resource/create",
"properties": {
"model": {
"group": "hive.openshift.io",
"version": "v1",
"kind": "ClusterDeployment"
},
"component": {
"$codeRef": "CreateClusterWizard.default"
}
}
},
{
"type": "console.page/route",
"properties": {
"exact": true,
"path": ["/k8s/ns/:ns/hive.openshift.io~v1~ClusterDeployment/:name/edit"],
"component": {
"$codeRef": "EditClusterWizard.default"
}
}
},
{
"type": "console.navigation/resource-ns",
"properties": {
"id": "infra-env",
"section": "administration",
"name": "Infrastructures",
"model": {
"group": "agent-install.openshift.io",
"version": "v1beta1",
"kind": "InfraEnv"
}
}
}
]