-
Notifications
You must be signed in to change notification settings - Fork 231
/
Copy pathconstants.js
692 lines (671 loc) · 23.6 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
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
'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.
if (angular.isUndefined(window.OPENSHIFT_CONSTANTS)) {
window.OPENSHIFT_CONSTANTS = {};
}
angular.extend(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/triggering_builds.html",
"webhooks": "dev_guide/builds/triggering_builds.html#webhook-triggers",
"new_app": "dev_guide/application_lifecycle/new_app.html",
"start-build": "dev_guide/builds/basic_build_operations.html#starting-a-build",
"deployment-operations": "cli_reference/basic_cli_operations.html#build-and-deployment-cli-operations",
"route-types": "architecture/networking/routes.html#route-types",
"persistent_volumes": "dev_guide/persistent_volumes.html",
"expanding_persistent_volumes": "dev_guide/expanding_persistent_volumes.html",
"compute_resources": "dev_guide/compute_resources.html",
"pod_autoscaling": "dev_guide/pod_autoscaling.html",
"application_health": "dev_guide/application_health.html",
"webhook_secrets": "dev_guide/builds/triggering_builds.html#webhook-triggers",
"source_secrets": "dev_guide/builds/build_inputs.html#using-secrets-during-build",
"git_secret": "dev_guide/builds/build_inputs.html#source-clone-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-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",
//"stateful-sets": "", // TODO: docs are in progress
"pods": "architecture/core_concepts/pods_and_services.html#pods",
"services": "architecture/core_concepts/pods_and_services.html#services",
"routes": "architecture/networking/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",
"build-hooks": "dev_guide/builds/build_hooks.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"
},
// Optional default CPU target percentage for horizontal pod autoscalers
// created in the web console. This value is prefilled in the HPA form. No
// value is prefilled by default. Should be an integer value if specified
// (for instance, `80`).
DEFAULT_HPA_CPU_TARGET_PERCENT: null,
// 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,
// true indicates that the web console should not show confirmation prompts
// when users navigate away from a page without saving.
DISABLE_CONFIRM_ON_EXIT: false,
// Disable the new landing page and service catalog experience.
DISABLE_SERVICE_CATALOG_LANDING_PAGE: false,
// 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: [],
// Currently disables watch on events used by the drawer.
DISABLE_GLOBAL_EVENT_WATCH: false,
// Disables the copy login command option from the user menu and CLI page.
DISABLE_COPY_LOGIN_COMMAND: false,
ENABLE_TECH_PREVIEW_FEATURE: {
// Set to true if the service catalog supports pod presets for binding services to applications.
pod_presets: false
},
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'],
// Namespaced resources not in this whitelist will be flagged to users as potential concerns in template processing
// and Import YAML/JSON. This typically shouldn't be customized but can be if necessary.
SECURITY_CHECK_WHITELIST: [
{resource: 'buildconfigs', group: ''},
{resource: 'buildconfigs', group: 'build.openshift.io'},
{resource: 'builds', group: ''},
{resource: 'builds', group: 'build.openshift.io'},
{resource: 'configmaps', group: ''},
{resource: 'daemonsets', group: 'extensions'},
{resource: 'deployments', group: 'apps'},
{resource: 'deployments', group: 'extensions'},
{resource: 'deploymentconfigs', group: ''},
{resource: 'deploymentconfigs', group: 'apps.openshift.io'},
{resource: 'endpoints', group: ''},
{resource: 'events', group: ''},
{resource: 'horizontalpodautoscalers', group: 'autoscaling'},
{resource: 'horizontalpodautoscalers', group: 'extensions'},
{resource: 'imagestreamimages', group: ''},
{resource: 'imagestreamimages', group: 'image.openshift.io'},
{resource: 'imagestreams', group: ''},
{resource: 'imagestreams', group: 'image.openshift.io'},
{resource: 'imagestreamtags', group: ''},
{resource: 'imagestreamtags', group: 'image.openshift.io'},
{resource: 'ingresses', group: 'extensions'},
{resource: 'jobs', group: 'batch'},
{resource: 'persistentvolumeclaims', group: ''},
{resource: 'pods', group: ''},
{resource: 'podtemplates', group: ''},
{resource: 'replicasets', group: 'extensions'},
{resource: 'replicationcontrollers', group: ''},
{resource: 'routes', group: ''},
{resource: 'routes', group: 'route.openshift.io'},
{resource: 'secrets', group: ''},
{resource: 'serviceaccounts', group: ''},
{resource: 'servicebindings', group: 'servicecatalog.k8s.io'},
{resource: 'serviceinstances', group: 'servicecatalog.k8s.io'},
{resource: 'services', group: ''},
{resource: 'statefulsets', group: 'apps'}
],
MEMBERSHIP_WHITELIST: [
"admin",
"basic-user",
"edit",
"system:deployer",
"system:image-builder",
"system:image-puller",
"system:image-pusher",
"view",
],
// TODO:
// This map can drive both the drawer & toast messages by
// updating it to the following format:
// { drawer: true, toast: true }
// or perhaps this, where an event may apply to multiple resources
// (though reuse of events is not super common, this could be overkill):
// Failed: {
// resources: [{ group: 'apps', resource: 'deployments' }],
// drawer: true,
// toast: true
// }
// TODO: Also consider an API_OBJECTS_TO_IGNORE
// map that can blacklist some, for example, if FailedCreate
// applies to many but we don't want to see all.
EVENTS_TO_SHOW: {
// General events that apply to more than one api object
FailedCreate: true,
FailedDelete: true,
FailedScheduling: true,
FailedUpdate: true,
// Build
BuildCancelled: true,
BuildCompleted: true,
BuildFailed: true,
BuildStarted: true,
// BuildConfig
BuildConfigInstantiateFailed: true,
// Deployment
Failed: true,
// DeploymentConfig
DeploymentCreated: true,
DeploymentCreationFailed: true,
RolloutCancelled: true,
// HorizontalPodAutoscaler
FailedRescale: true,
SuccessfulRescale: true,
// Pod
BackOff: true,
FailedSync: true,
InvalidEnvironmentVariableNames: true,
Unhealthy: true,
// PVC
FailedBinding: true,
ProvisioningFailed: true,
VolumeDeleted: true,
// Service
LoadBalancerUpdateFailed: true,
// Service Catalog
Deprovisioning: true,
ErrorCallingProvision: true,
ErrorInjectingBindResult: true,
ProvisionCallFailed: true,
ProvisionedSuccessfully: true,
Provisioning: true,
ReferencesNonexistentServiceClass: true,
ReferencesNonexistentServicePlan: true,
UnbindCallFailed: true
},
// 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: [
"/add-config-volume",
"/attach-pvc",
"/browse/deployment/",
"/browse/dc/",
"/browse/rs/",
"/browse/rc/",
"/edit/autoscaler",
"/edit/dc/",
"/edit/health-checks",
"/set-limits"
]
},
{
label: "Stateful Sets",
href: "/browse/stateful-sets",
prefixes: [
"/browse/stateful-sets/"
]
},
{
label: "Pods",
href: "/browse/pods",
prefixes: [
"/browse/pods/"
]
},
{
label: "Services",
href: "/browse/services",
prefixes: [
"/browse/services/"
]
},
{
label: "Routes",
href: "/browse/routes",
prefixes: [
"/browse/routes/",
"/create-route",
"/edit/routes/"
]
},
{
label: "Provisioned Services",
href: "/browse/service-instances",
prefixes: [
"/browse/service-instances/"
],
canI: {
resource: 'serviceinstances',
group: 'servicecatalog.k8s.io',
verb: 'list'
}
}
]
}
]
},
{
label: "Builds",
iconClass: "pficon pficon-build",
secondaryNavSections: [
{
items: [
{
label: "Builds",
href: "/browse/builds",
prefixes: [
"/browse/builds/",
"/browse/builds-noconfig/",
"/edit/builds/"
]
},
{
label: "Pipelines",
href: "/browse/pipelines",
prefixes: [
"/browse/pipelines/",
"/edit/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/",
"/create-config-map",
"/edit/config-maps/"
]
},
{
label: "Secrets",
href: "/browse/secrets",
prefixes: [
"/browse/secrets/",
"/create-secret"
],
canI: {
resource: 'secrets',
verb: 'list'
}
},
{
label: "Other Resources",
href: "/browse/other"
}
]
}
]
},
{
label: "Storage",
iconClass: "pficon pficon-container-node",
href: "/browse/storage",
prefixes: [
"/browse/storage/",
"/browse/persistentvolumeclaims/",
"/create-pvc"
]
},
{
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
// }
// ]
// }
// ]
},
{
label: "Catalog",
iconClass: "pficon pficon-catalog",
href: "/catalog",
canI: {
addToProject: true
}
}
],
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: "Golang",
categoryAliases: ["go"],
label: "Go",
iconClass: "font-icon icon-go-gopher"
}
]
},
{
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: ""
}
]
}
],
SAAS_OFFERINGS: [
// Example application link to add to the top of the landing page.
// {
// id: 1,
// title: 'Microservices Application',
// icon: 'fa fa-cubes',
// url: 'https://www.example.com/',
// description: 'Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt.'
// }
],
APP_LAUNCHER_NAVIGATION: [
// Example application link to show in the masthead application launcher beside the help and user menus.
// {
// title: 'Dashboard',
// iconClass: 'fa fa-dashboard',
// href: 'http://example.com/',
// tooltip: 'Open Dashboard'
// }
],
QUOTA_NOTIFICATION_MESSAGE: {
// Example quota messages to show in notification drawer
// "pods": "Upgrade to <a href='http://www.openshift.com'>OpenShift Pro</a> if you need additional resources.",
// "limits.memory": "Upgrade to <a href='http://www.openshift.com'>OpenShift Online Pro</a> if you need additional resources."
},
// The base URL for logos.
LOGO_BASE_URL: "images/logos/",
// Some icon classes we have SVG images for. Use the color images when we have them.
LOGOS: {
'icon-3scale': '3scale.svg',
'icon-aerogear': 'aerogear.svg',
'icon-amq': 'amq.svg',
'icon-angularjs': 'angularjs.svg',
'icon-ansible': 'ansible.svg',
'icon-apache': 'apache.svg',
'icon-beaker': 'beaker.svg',
'icon-capedwarf': 'capedwarf.svg',
'icon-cassandra': 'cassandra.svg',
'icon-clojure': 'clojure.svg',
'icon-codeigniter': 'codeigniter.svg',
'icon-cordova': 'cordova.png',
'icon-datagrid': 'datagrid.svg',
'icon-datavirt': 'datavirt.svg',
'icon-debian': 'debian.svg',
'icon-decisionserver': 'decisionserver.svg',
'icon-django': 'django.svg',
'icon-dotnet': 'dotnet.svg',
'icon-drupal': 'drupal.svg',
'icon-eap': 'eap.svg',
'icon-elastic': 'elastic.svg',
'icon-erlang': 'erlang.svg',
'icon-fedora': 'fedora.svg',
'icon-freebsd': 'freebsd.svg',
'icon-git': 'git.svg',
'icon-github': 'github.svg',
'icon-gitlab': 'gitlab.svg',
'icon-glassfish': 'glassfish.svg',
'icon-go-gopher': 'go-gopher.svg',
'icon-grails': 'grails.svg',
'icon-hadoop': 'hadoop.svg',
'icon-haproxy': 'haproxy.svg',
'icon-infinispan': 'infinispan.svg',
'icon-jboss': 'jboss.svg',
'icon-jenkins': 'jenkins.svg',
'icon-jetty': 'jetty.svg',
'icon-joomla': 'joomla.svg',
'icon-jruby': 'jruby.svg',
'icon-js': 'js.svg',
'icon-kubevirt': 'kubevirt.svg',
'icon-laravel': 'laravel.svg',
'icon-load-balancer': 'load-balancer.svg',
'icon-mariadb': 'mariadb.svg',
'icon-mediawiki': 'mediawiki.svg',
'icon-memcached': 'memcached.svg',
'icon-mongodb': 'mongodb.svg',
'icon-mssql': 'mssql.svg',
'icon-mysql-database': 'mysql-database.svg',
'icon-nginx': 'nginx.svg',
'icon-nodejs': 'nodejs.svg',
'icon-openjdk': 'openjdk.svg',
'icon-openshift': 'openshift.svg',
'icon-openstack': 'openstack.svg',
'icon-other-linux': 'other-linux.svg',
'icon-other-unknown': 'other-unknown.svg',
'icon-perl': 'perl.svg',
'icon-phalcon': 'phalcon.svg',
'icon-php': 'php.svg',
'icon-play': 'play.svg',
'icon-postgresql': 'postgresql.svg',
'icon-processserver': 'processserver.svg',
'icon-python': 'python.svg',
'icon-rabbitmq': 'rabbitmq.svg',
'icon-rails': 'rails.svg',
'icon-redis': 'redis.svg',
'icon-rh-integration': 'rh-integration.svg',
// Use the upstream icon.
'icon-rh-openjdk': 'openjdk.svg',
'icon-rh-tomcat': 'rh-tomcat.svg',
'icon-ruby': 'ruby.svg',
'icon-scala': 'scala.svg',
'icon-shadowman': 'shadowman.svg',
'icon-spring': 'spring.svg',
'icon-sso': 'sso.svg',
'icon-stackoverflow': 'stackoverflow.svg',
'icon-suse': 'suse.svg',
'icon-symfony': 'symfony.svg',
'icon-tomcat': 'tomcat.svg',
'icon-ubuntu': 'ubuntu.svg',
'icon-wildfly': 'wildfly.svg',
'icon-windows': 'windows.svg',
'icon-wordpress': 'wordpress.svg',
'icon-xamarin': 'xamarin.svg',
'icon-zend': 'zend.svg'
},
CLUSTER_RESOURCE_OVERRIDES_EXEMPT_PROJECT_NAMES: [
'openshift',
'kubernetes',
'kube'
],
CLUSTER_RESOURCE_OVERRIDES_EXEMPT_PROJECT_PREFIXES: [
'openshift-',
'kubernetes-',
'kube-'
]
});