generated from openshift/console-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 4
/
console-extensions.json
170 lines (170 loc) · 4.23 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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
[
{
"type": "console.page/route",
"properties": {
"exact": true,
"path": "/kuadrant/overview",
"component": { "$codeRef": "KuadrantOverviewPage" }
}
},
{
"type": "console.page/route",
"properties": {
"path": "/kuadrant/all-namespaces/policies",
"component": { "$codeRef": "KuadrantPoliciesPage" }
}
},
{
"type": "console.page/route",
"properties": {
"path": "/kuadrant/ns/:ns/policies",
"component": { "$codeRef": "KuadrantPoliciesPage" }
}
},
{
"type": "console.page/route",
"properties": {
"exact": true,
"path": "/kuadrant/policy-topology",
"component": { "$codeRef": "PolicyTopologyPage" }
}
},
{
"type": "console.page/route",
"properties": {
"exact": true,
"path": "/k8s/ns/:ns/tlspolicy/name/:name/edit",
"component": { "$codeRef": "KuadrantTLSCreatePage" }
}
},
{
"type": "console.page/route",
"properties": {
"exact": true,
"path": "/k8s/ns/:ns/dnspolicy/name/:name/edit",
"component": { "$codeRef": "KuadrantDNSPolicyCreatePage" }
}
},
{
"type": "console.resource/create",
"properties": {
"model": {
"group": "kuadrant.io",
"version": "v1",
"kind": "DNSPolicy"
},
"component": { "$codeRef": "KuadrantDNSPolicyCreatePage" }
}
},
{
"type": "console.resource/create",
"properties": {
"model": {
"group": "kuadrant.io",
"version": "v1",
"kind": "RateLimitPolicy"
},
"component": { "$codeRef": "KuadrantRateLimitPolicyCreatePage" }
}
},
{
"type": "console.resource/create",
"properties": {
"model": {
"group": "kuadrant.io",
"version": "v1",
"kind": "TLSPolicy"
},
"component": { "$codeRef": "KuadrantTLSCreatePage" }
}
},
{
"type": "console.resource/create",
"properties": {
"model": {
"group": "kuadrant.io",
"version": "v1",
"kind": "AuthPolicy"
},
"component": { "$codeRef": "KuadrantAuthPolicyCreatePage" }
}
},
{
"type": "console.navigation/section",
"properties": {
"id": "kuadrant-section-admin",
"name": "%plugin__kuadrant-console-plugin~Kuadrant%",
"perspective": "admin"
}
},
{
"type": "console.navigation/href",
"properties": {
"id": "kuadrant-overview-admin",
"name": "%plugin__kuadrant-console-plugin~Overview%",
"href": "/kuadrant/overview",
"perspective": "admin",
"section": "kuadrant-section-admin"
}
},
{
"type": "console.navigation/href",
"properties": {
"id": "kuadrant-policies-admin",
"name": "%plugin__kuadrant-console-plugin~Policies%",
"href": "/kuadrant/all-namespaces/policies",
"perspective": "admin",
"section": "kuadrant-section-admin"
}
},
{
"type": "console.navigation/href",
"properties": {
"id": "kuadrant-policy-topology-admin",
"name": "%plugin__kuadrant-console-plugin~Policy Topology%",
"href": "/kuadrant/policy-topology",
"perspective": "admin",
"section": "kuadrant-section-admin",
"badge": "dev"
}
},
{
"type": "console.navigation/section",
"properties": {
"id": "kuadrant-section-dev",
"name": "%plugin__kuadrant-console-plugin~Kuadrant%",
"perspective": "dev"
}
},
{
"type": "console.navigation/href",
"properties": {
"id": "kuadrant-dashboard-dev",
"name": "%plugin__kuadrant-console-plugin~Overview%",
"href": "/kuadrant/overview",
"perspective": "dev",
"section": "kuadrant-section-dev"
}
},
{
"type": "console.navigation/href",
"properties": {
"id": "kuadrant-policies-dev",
"name": "%plugin__kuadrant-console-plugin~Policies%",
"href": "/kuadrant/all-namespaces/policies",
"perspective": "dev",
"section": "kuadrant-section-dev"
}
},
{
"type": "console.navigation/href",
"properties": {
"id": "kuadrant-policy-topology-dev",
"name": "%plugin__kuadrant-console-plugin~Policy Topology%",
"href": "/kuadrant/policy-topology",
"perspective": "dev",
"section": "kuadrant-section-dev",
"badge": "dev"
}
}
]