forked from openshift/origin-web-console
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconstants.js
393 lines (381 loc) · 13.3 KB
/
constants.js
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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
'use strict';
// Assigns global constants to things like external documentation, links to external resources, annotations and naming, etc.
// Can be customized using custom scripts in the master config file that override one or multiple of these objects.
// Reference: https://docs.openshift.org/latest/install_config/web_console_customization.html#loading-custom-scripts-and-stylesheets
// NOTE: Update extensions/examples/online-extensions.js if you add a new help link to this map.
window.OPENSHIFT_CONSTANTS = {
// Maps links to specific topics in external documentation.
HELP_BASE_URL: "https://docs.openshift.org/latest/",
HELP: {
"cli": "cli_reference/index.html",
"get_started_cli": "cli_reference/get_started_cli.html",
"basic_cli_operations": "cli_reference/basic_cli_operations.html",
"build-triggers": "dev_guide/builds.html#build-triggers",
"webhooks": "dev_guide/builds.html#webhook-triggers",
"new_app": "dev_guide/application_lifecycle/new_app.html",
"start-build": "dev_guide/builds.html#starting-a-build",
"deployment-operations": "cli_reference/basic_cli_operations.html#build-and-deployment-cli-operations",
"route-types": "architecture/core_concepts/routes.html#route-types",
"persistent_volumes": "dev_guide/persistent_volumes.html",
"compute_resources": "dev_guide/compute_resources.html",
"pod_autoscaling": "dev_guide/pod_autoscaling.html",
"application_health": "dev_guide/application_health.html",
"source_secrets": "dev_guide/builds.html#using-secrets",
"git_secret": "dev_guide/builds.html#source-secrets",
"pull_secret": "dev_guide/managing_images.html#using-image-pull-secrets",
"managing_secrets": "dev_guide/service_accounts.html#managing-allowed-secrets",
"creating_secrets": "dev_guide/secrets.html#creating-and-using-secrets",
"storage_classes": "install_config/persistent_storage/dynamically_provisioning_pvs.html",
"selector_label": "install_config/persistent_storage/selector_label_binding.html",
"rolling_strategy": "dev_guide/deployments/deployment_strategies.html#rolling-strategy",
"recreate_strategy": "dev_guide/deployments/deployment_strategies.html#recreate-strategy",
"custom_strategy": "dev_guide/deployments/deployment_strategies.html#custom-strategy",
"lifecycle_hooks": "dev_guide/deployments/deployment_strategies.html#lifecycle-hooks",
"new_pod_exec": "dev_guide/deployments/deployment_strategies.html#pod-based-lifecycle-hook",
"authorization": "architecture/additional_concepts/authorization.html",
"roles": "architecture/additional_concepts/authorization.html#roles",
"service_accounts": "dev_guide/service_accounts.html",
"users_and_groups": "architecture/additional_concepts/authentication.html#users-and-groups",
"pipeline-builds": "architecture/core_concepts/builds_and_image_streams.html#pipeline-build",
"pipeline-plugin": "using_images/other_images/jenkins.html#openshift-origin-pipeline-plug-in",
"quota": "dev_guide/compute_resources.html",
"config-maps": "dev_guide/configmaps.html",
"secrets": "dev_guide/secrets.html",
"deployments": "dev_guide/deployments/how_deployments_work.html",
"pods": "architecture/core_concepts/pods_and_services.html#pods",
"services": "architecture/core_concepts/pods_and_services.html#services",
"routes": "architecture/core_concepts/routes.html",
"builds": "architecture/core_concepts/builds_and_image_streams.html#builds",
"image-streams": "architecture/core_concepts/builds_and_image_streams.html#image-streams",
"storage": "architecture/additional_concepts/storage.html",
// default should remain last, add new links above
"default": "welcome/index.html"
},
// Maps links names to URL's where the CLI tools can be downloaded, may point directly to files or to external pages in a CDN, for example.
CLI: {
"Latest Release": "https://github.com/openshift/origin/releases/latest"
},
// The default CPU target percentage for horizontal pod autoscalers created or edited in the web console.
// This value is set in the HPA when the input is left blank.
DEFAULT_HPA_CPU_TARGET_PERCENT: 80,
// true indicates that deployment metrics should be disabled on the web console overview
DISABLE_OVERVIEW_METRICS: false,
// true indicates that custom metrics should be disabled when viewing pod metrics
DISABLE_CUSTOM_METRICS: false,
// true indicates that none of the routers support wildcard subdomains and
// removes the option from the route creation form.
DISABLE_WILDCARD_ROUTES: true,
// This blacklist hides certain kinds from the "Other Resources" page because they are unpersisted, disallowed for most end users, or not supported by openshift but exist in kubernetes
AVAILABLE_KINDS_BLACKLIST: [
// These are k8s kinds that are not supported in the current release of OpenShift
"Binding",
"Ingress",
// These are things like DCPs that aren't actually persisted resources
"DeploymentConfigRollback"
],
ENABLE_TECH_PREVIEW_FEATURE: {
pipelines: true
},
SAMPLE_PIPELINE_TEMPLATE: {
name: "jenkins-pipeline-example",
namespace: "openshift"
},
// only resources from the namespaces listed below can be utilized with create from url (/create)
// 'openshift' should always be included
CREATE_FROM_URL_WHITELIST: ['openshift'],
// href's will be prefixed with /project/{{projectName}} unless they are absolute URLs
PROJECT_NAVIGATION: [
{
label: "Overview",
iconClass: "fa fa-dashboard",
href: "/overview"
},
{
label: "Applications",
iconClass: "fa fa-cubes",
secondaryNavSections: [
{
items: [
{
label: "Deployments",
href: "/browse/deployments",
prefixes: [
"/browse/deployment/",
"/browse/dc/",
"/browse/rs/",
"/browse/rc/"
]
},
{
label: "Pods",
href: "/browse/pods",
prefixes: [
"/browse/pods/"
]
},
{
label: "Services",
href: "/browse/services",
prefixes: [
"/browse/services/"
]
},
{
label: "Routes",
href: "/browse/routes",
prefixes: [
"/browse/routes/"
]
}
]
}
]
},
{
label: "Builds",
iconClass: "pficon pficon-build",
secondaryNavSections: [
{
items: [
{
label: "Builds",
href: "/browse/builds",
prefixes: [
"/browse/builds/",
"/browse/builds-noconfig/"
]
},
{
label: "Pipelines",
href: "/browse/pipelines",
prefixes: [
"/browse/pipelines/"
],
isValid: function() {
return !!_.get(window.OPENSHIFT_CONSTANTS, 'ENABLE_TECH_PREVIEW_FEATURE.pipelines');
}
},
{
label: "Images",
href: "/browse/images",
prefixes: [
"/browse/images/"
]
}
]
}
]
},
{
label: "Resources",
iconClass: "fa fa-files-o",
secondaryNavSections: [
{
items: [
{
label: "Quota",
href: "/quota"
},
{
label: "Membership",
href: "/membership",
// supports: {resource: '', verb: '', group: '' }
canI: {
resource: 'rolebindings',
verb: 'list'
}
},
{
label: "Config Maps",
href: "/browse/config-maps",
prefixes: [
"/browse/config-maps/"
]
},
{
label: "Secrets",
href: "/browse/secrets",
prefixes: [
"/browse/secrets/"
],
canI: {
resource: 'secrets',
verb: 'list'
}
},
{
label: "Other Resources",
href: "/browse/other"
}
]
}
]
},
{
label: "Storage",
iconClass: "pficon pficon-container-node",
href: "/browse/storage",
prefixes: [
"/browse/storage/"
]
},
{
label: "Monitoring",
iconClass: "pficon pficon-screen",
href: "/monitoring",
prefixes: [
"/browse/events"
]
// TODO uncomment when we have at least one of metrics or logs pages and then take off the href going straight to events
// secondaryNavSections: [
// {
// items: [
// {
// label: "Events",
// href: "/browse/events"
// },
// {
// label: "Logs",
// href: "#" // TODO
// },
// {
// label: "Metrics",
// href: "#" // TODO
// }
// ]
// }
// ]
}
],
CATALOG_CATEGORIES: [
{
id: 'languages',
label: "Languages",
iconClassDefault: "fa fa-code",
items: [
{
id: "java",
label: "Java",
iconClass: "font-icon icon-openjdk",
subcategories: [{
id: 'java-subcategories',
items: [
{
id: "amq",
label: "Red Hat JBoss A-MQ"
},
{
id: "processserver",
label: "Red Hat JBoss BPM Suite"
},
{
id: "decisionserver",
label: "Red Hat JBoss BRMS"
},
{
id: "datagrid",
label: "Red Hat JBoss Data Grid"
},
{
id: "eap",
label: "Red Hat JBoss EAP"
},
{
id: "jboss-fuse",
label: "Red Hat JBoss Fuse"
},
{
id: "tomcat",
label: "Red Hat JBoss Web Server (Tomcat)"
},
{
id: "sso",
label: "Red Hat Single Sign-On"
},
{
id: "wildfly",
label: "WildFly"
}
]
}]
},
{
id: "javascript",
categoryAliases: ["nodejs","js"],
label: "JavaScript",
iconClass: "font-icon icon-js"
},
{
id: "dotnet",
label: ".NET",
iconClass: "font-icon icon-dotnet"
},
{
id: "perl",
label: "Perl",
iconClass: "font-icon icon-perl"
},
{
id: "php",
label: "PHP",
iconClass: "font-icon icon-php"
},
{
id: "python",
label: "Python",
iconClass: "font-icon icon-python"
},
{
id: "ruby",
label: "Ruby",
iconClass: "font-icon icon-ruby"
}
]
},
{
id: 'technologies',
label: "Technologies",
items: [
{
id: "business-process-services",
categoryAliases: ["decisionserver","processserver"],
label: "Business Process Services",
description: "Model, automate, and orchestrate business processes across applications, services, and data."
},
{
id: "ci-cd",
categoryAliases:["jenkins"],
label: "Continuous Integration & Deployment",
description: "Automate the build, test, and deployment of your application with each new code revision."
},
{
id: "datastore",
categoryAliases: ["database","datagrid"],
label: "Data Stores",
description: "Store and manage collections of data."
},
{
id: "messaging",
label: "Messaging",
description: "Facilitate communication between applications and distributed processes with a messaging server."
},
{
id: "integration",
label: "Integration",
description: "Connect with other applications and data to enhance functionality without duplication."
},
{
id: "single-sign-on",
categoryAliases: ["sso"],
label: "Single Sign-On",
description: "A centralized authentication server for users to log in, log out, register, and manage user accounts for applications and RESTful web services."
},
{
id: "",
label: "Uncategorized",
description: ""
}
]
}
]
};