forked from redhat-developer/rhdh
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdynamic-plugins.default.yaml
More file actions
1790 lines (1789 loc) · 76.1 KB
/
dynamic-plugins.default.yaml
File metadata and controls
1790 lines (1789 loc) · 76.1 KB
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
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# THIS FILE IS DEPRECATED. CONTENTS ARE GENERATED - DO NOT EDIT!
#
# File dynamic-plugins.default.yaml is now generated from default.package.yaml (in this repo)
# and default configuration located in the overlays repo under workspaces/*/metadata/*.yaml
# See https://github.com/redhat-developer/rhdh-plugin-export-overlays/
#
# To fetch + unpack the latest index image see
# https://github.com/redhat-developer/rhdh/blob/main/.github/workflows/update-dynamic-plugins-default.yaml#L44-L75
plugins:
# - package: oci://registry.access.redhat.com/rhdh/backstage-community-plugin-analytics-provider-segment@sha256:d465b0f4f85af8a0767a84055c366cebc11c8c1f6a8488248874e3acc7f148ee
# Tag: 1.10.0--1.22.2, Build date: 2026-01-29T16:35:53Z
# new approach using oci images: to switch to the new approach, uncommment
# the 'package' line above and remove the next two lines, keeping the pluginConfig.
# disabled: true
- package: ./dynamic-plugins/dist/backstage-community-plugin-analytics-provider-segment
disabled: false
pluginConfig:
dynamicPlugins:
frontend:
backstage-community.plugin-analytics-provider-segment:
analyticsApiExtensions:
- importName: SegmentAnalytics
backend:
csp:
script-src:
- '''self'''
- '''unsafe-eval'''
- https://cdn.segment.com
app:
analytics:
segment:
writeKey: ${SEGMENT_WRITE_KEY}
maskIP: true
testMode: ${SEGMENT_TEST_MODE}
appVersion: ${RHDH_VERSION}
backstageVersion: ${BACKSTAGE_VERSION}
# - package: oci://registry.access.redhat.com/rhdh/backstage-community-plugin-scaffolder-backend-module-regex@sha256:655a023e75c9bcfecfb963a6219b4a1c7abb462e8b8ebd5462b94eaadf91ec4f
# Tag: 1.10.0--2.11.0, Build date: 2026-01-29T16:23:58Z
# new approach using oci images: to switch to the new approach, uncommment
# the 'package' line above and remove the next two lines, keeping the pluginConfig.
# disabled: true
- package: ./dynamic-plugins/dist/backstage-community-plugin-scaffolder-backend-module-regex-dynamic
disabled: false
# - package: oci://registry.access.redhat.com/rhdh/backstage-plugin-techdocs@sha256:44060db142001d1a6cbfcb7eb90daa0a7c07c492cc2693c0c9a5d8645fbe64f4
# Tag: 1.10.0--1.16.0, Build date: 2026-01-29T15:44:15Z
# new approach using oci images: to switch to the new approach, uncommment
# the 'package' line above and remove the next two lines, keeping the pluginConfig.
# disabled: true
- package: ./dynamic-plugins/dist/backstage-plugin-techdocs
disabled: false
pluginConfig:
dynamicPlugins:
frontend:
backstage.plugin-techdocs:
routeBindings:
targets:
- importName: techdocsPlugin
bindings:
- bindTarget: catalogPlugin.externalRoutes
bindMap:
viewTechDoc: techdocsPlugin.routes.docRoot
- bindTarget: scaffolderPlugin.externalRoutes
bindMap:
viewTechDoc: techdocsPlugin.routes.docRoot
dynamicRoutes:
- path: /docs
importName: TechDocsIndexPage
menuItem:
icon: docs
text: Docs
textKey: menuItem.docs
- path: /docs/:namespace/:kind/:name/*
importName: TechDocsReaderPage
mountPoints:
- mountPoint: entity.page.docs/cards
importName: EntityTechdocsContent
config:
layout:
gridColumn: 1 / -1
if:
allOf:
- isTechDocsAvailable
- mountPoint: search.page.results
importName: TechDocsSearchResultListItem
- mountPoint: search.page.filters
importName: TechdocsSearchFilter
- mountPoint: search.page.types
importName: techdocsSearchType
config:
props:
name: Documentation
icon: docs
# - package: oci://registry.access.redhat.com/rhdh/backstage-plugin-techdocs-backend@sha256:5aed0a6217851c088837f5ba8467ae2ebb6e75a9db167c142ac63722b98ba82d
# Tag: 1.10.0--2.1.2, Build date: 2026-01-29T16:06:02Z
# new approach using oci images: to switch to the new approach, uncommment
# the 'package' line above and remove the next two lines, keeping the pluginConfig.
# disabled: true
- package: ./dynamic-plugins/dist/backstage-plugin-techdocs-backend-dynamic
disabled: false
pluginConfig:
techdocs:
builder: local
generator:
runIn: local
publisher:
type: local
# - package: oci://registry.access.redhat.com/rhdh/backstage-plugin-techdocs-module-addons-contrib@sha256:07c180d7391e4003ee60cf27c6f5ced9d04f7c17a17c02fba0bdffdc0be88dfb
# Tag: 1.10.0--1.1.30, Build date: 2026-01-29T16:32:57Z
# new approach using oci images: to switch to the new approach, uncommment
# the 'package' line above and remove the next two lines, keeping the pluginConfig.
# disabled: true
- package: ./dynamic-plugins/dist/backstage-plugin-techdocs-module-addons-contrib
disabled: false
pluginConfig:
dynamicPlugins:
frontend:
backstage.plugin-techdocs-module-addons-contrib:
techdocsAddons:
- importName: ReportIssue
# - package: oci://registry.access.redhat.com/rhdh/red-hat-developer-hub-backstage-plugin-adoption-insights@sha256:9aa00931cb0759f64c2c0ee253887edc733293a958c58bf57189a9127a4733d5
# Tag: 1.10.0--0.6.2, Build date: 2026-01-29T16:00:24Z
# new approach using oci images: to switch to the new approach, uncommment
# the 'package' line above and remove the next two lines, keeping the pluginConfig.
# disabled: true
- package: ./dynamic-plugins/dist/red-hat-developer-hub-backstage-plugin-adoption-insights
disabled: false
pluginConfig:
dynamicPlugins:
frontend:
red-hat-developer-hub.backstage-plugin-adoption-insights:
translationResources:
- importName: adoptionInsightsTranslations
ref: adoptionInsightsTranslationRef
appIcons:
- name: adoptionInsightsIcon
importName: AdoptionInsightsIcon
dynamicRoutes:
- path: /adoption-insights
importName: AdoptionInsightsPage
menuItem:
icon: adoptionInsightsIcon
text: Adoption Insights
textKey: menuItem.adoptionInsights
menuItems:
adoption-insights:
parent: default.admin
icon: adoptionInsightsIcon
# - package: oci://registry.access.redhat.com/rhdh/red-hat-developer-hub-backstage-plugin-adoption-insights-backend@sha256:58f130b65492a43aa2d48cc3160fb4b6d7b19c289633e3b305d1d8e58d9692e1
# Tag: 1.10.0--0.6.2, Build date: 2026-01-29T16:02:32Z
# new approach using oci images: to switch to the new approach, uncommment
# the 'package' line above and remove the next two lines, keeping the pluginConfig.
# disabled: true
- package: ./dynamic-plugins/dist/red-hat-developer-hub-backstage-plugin-adoption-insights-backend-dynamic
disabled: false
pluginConfig:
app:
analytics:
adoptionInsights:
maxBufferSize: 20
flushInterval: 5000
debug: false
licensedUsers: 100
# - package: oci://registry.access.redhat.com/rhdh/red-hat-developer-hub-backstage-plugin-analytics-module-adoption-insights@sha256:dae9c9df044af705618236605277d57f5c76c669e99f4e1d1fed548dbf7694c7
# Tag: 1.10.0--0.6.2, Build date: 2026-01-29T16:18:33Z
# new approach using oci images: to switch to the new approach, uncommment
# the 'package' line above and remove the next two lines, keeping the pluginConfig.
# disabled: true
- package: ./dynamic-plugins/dist/red-hat-developer-hub-backstage-plugin-analytics-module-adoption-insights-dynamic
disabled: false
pluginConfig:
dynamicPlugins:
frontend:
red-hat-developer-hub.backstage-plugin-analytics-module-adoption-insights:
analyticsApiExtensions:
- importName: AdoptionInsightsAnalyticsApi
# - package: oci://registry.access.redhat.com/rhdh/red-hat-developer-hub-backstage-plugin-catalog-backend-module-extensions@sha256:66c212aa13ef5eaf47cadb1662a0917a8eb5633fca9923b69ed324767d4007f3
# Tag: 1.10.0--0.14.3, Build date: 2026-01-30T20:21:29Z
# new approach using oci images: to switch to the new approach, uncommment
# the 'package' line above and remove the next two lines, keeping the pluginConfig.
# disabled: true
- package: ./dynamic-plugins/dist/red-hat-developer-hub-backstage-plugin-catalog-backend-module-extensions-dynamic
disabled: false
# - package: oci://registry.access.redhat.com/rhdh/red-hat-developer-hub-backstage-plugin-dynamic-home-page@sha256:1fd1ecac1b8100044917bcf75b0949440d6c8af9fb4acff96b82adf4ee8db896
# Tag: 1.10.0--1.10.4, Build date: 2026-01-30T20:20:23Z
# new approach using oci images: to switch to the new approach, uncommment
# the 'package' line above and remove the next two lines, keeping the pluginConfig.
# disabled: true
- package: ./dynamic-plugins/dist/red-hat-developer-hub-backstage-plugin-dynamic-home-page
disabled: false
pluginConfig:
dynamicPlugins:
frontend:
red-hat-developer-hub.backstage-plugin-dynamic-home-page:
dynamicRoutes:
- path: /
importName: DynamicHomePage
mountPoints:
- mountPoint: application/listener
importName: VisitListener
- mountPoint: home.page/cards
importName: OnboardingSection
config:
id: rhdh-onboarding-section
title: Red Hat Developer Hub - Onboarding
cardLayout:
width:
minColumns: 4
maxColumns: 12
defaultColumns: 12
height:
minRows: 2
maxRows: 12
defaultRows: 4
layouts:
xl:
w: 12
h: 6
lg:
w: 12
h: 6
md:
w: 12
h: 7
sm:
w: 12
h: 8
xs:
w: 12
h: 9
xxs:
w: 12
h: 14
- mountPoint: home.page/cards
importName: EntitySection
config:
id: rhdh-entity-section
title: Red Hat Developer Hub - Software Catalog
cardLayout:
width:
minColumns: 4
maxColumns: 12
defaultColumns: 12
height:
minRows: 2
maxRows: 12
defaultRows: 4
layouts:
xl:
w: 12
h: 7
lg:
w: 12
h: 7
md:
w: 12
h: 8
sm:
w: 12
h: 9
xs:
w: 12
h: 11
xxs:
w: 12
h: 15
- mountPoint: home.page/cards
importName: TemplateSection
config:
id: rhdh-template-section
title: Red Hat Developer Hub - Explore templates
cardLayout:
width:
minColumns: 4
maxColumns: 12
defaultColumns: 12
height:
minRows: 2
maxRows: 12
defaultRows: 4
layouts:
xl:
w: 12
h: 5
lg:
w: 12
h: 5
md:
w: 12
h: 5
sm:
w: 12
h: 5
xs:
w: 12
h: 7.5
xxs:
w: 12
h: 13.5
- mountPoint: home.page/cards
importName: QuickAccessCard
config:
id: quickaccess-card
title: Quick Access Card
- mountPoint: home.page/cards
importName: SearchBar
config:
id: searchbar
title: Search
cardLayout:
width:
minColumns: 4
maxColumns: 12
defaultColumns: 12
height:
minRows: 1
maxRows: 2
defaultRows: 2
- mountPoint: home.page/cards
importName: CatalogStarredEntitiesCard
config:
id: catalog-starred-entities-card
title: Starred catalog entities
- mountPoint: home.page/cards
importName: RecentlyVisitedCard
config:
id: recently-visited-card
title: Recently visited
- mountPoint: home.page/cards
importName: TopVisitedCard
config:
id: top-visited-card
title: Top visited
- mountPoint: home.page/cards
importName: FeaturedDocsCard
config:
id: featured-docs-card
title: Featured docs
- mountPoint: home.page/cards
importName: JokeCard
config:
id: joke-card
title: Random joke
translationResources:
- importName: homepageTranslations
ref: homepageTranslationRef
# - package: oci://registry.access.redhat.com/rhdh/red-hat-developer-hub-backstage-plugin-extensions@sha256:71d6cfd7f31ebf4ae9ce589df94f549b69dcfbf2a3ab65837558503e84575d61
# Tag: 1.10.0--0.14.3, Build date: 2026-01-30T20:21:56Z
# new approach using oci images: to switch to the new approach, uncommment
# the 'package' line above and remove the next two lines, keeping the pluginConfig.
# disabled: true
- package: ./dynamic-plugins/dist/red-hat-developer-hub-backstage-plugin-extensions
disabled: false
pluginConfig:
dynamicPlugins:
frontend:
red-hat-developer-hub.backstage-plugin-extensions:
translationResources:
- importName: extensionsTranslations
ref: extensionsTranslationRef
module: Alpha
appIcons:
- name: pluginsIcon
importName: PluginsIcon
dynamicRoutes:
- path: /extensions
importName: DynamicExtensionsPluginRouter
menuItem:
icon: pluginsIcon
text: Extensions
textKey: menuItem.extensions
menuItems:
extensions:
parent: default.admin
# - package: oci://registry.access.redhat.com/rhdh/red-hat-developer-hub-backstage-plugin-extensions-backend@sha256:156e6b981d5c886146571c8bd55a05eabcd8819f1c40c1675dae65165f16d8fa
# Tag: 1.10.0--0.14.3, Build date: 2026-01-30T20:23:47Z
# new approach using oci images: to switch to the new approach, uncommment
# the 'package' line above and remove the next two lines, keeping the pluginConfig.
# disabled: true
- package: ./dynamic-plugins/dist/red-hat-developer-hub-backstage-plugin-extensions-backend-dynamic
disabled: false
# - package: oci://registry.access.redhat.com/rhdh/red-hat-developer-hub-backstage-plugin-global-floating-action-button@sha256:4ed7c2cfa3271e13f9380aed939a9b36e0016c2492fcc6e9fd42ded85f12671f
# Tag: 1.10.0--1.7.3, Build date: 2026-01-30T20:20:39Z
# new approach using oci images: to switch to the new approach, uncommment
# the 'package' line above and remove the next two lines, keeping the pluginConfig.
# disabled: true
- package: ./dynamic-plugins/dist/red-hat-developer-hub-backstage-plugin-global-floating-action-button
disabled: false
pluginConfig:
dynamicPlugins:
frontend:
red-hat-developer-hub.backstage-plugin-global-floating-action-button:
translationResources:
- importName: globalFloatingActionButtonTranslations
ref: globalFloatingActionButtonTranslationRef
mountPoints:
- mountPoint: application/listener
importName: DynamicGlobalFloatingActionButton
# - package: oci://registry.access.redhat.com/rhdh/red-hat-developer-hub-backstage-plugin-global-header@sha256:8f1b31acf2868bddd7572fe4af64b5d0b8e14f2a3e868e44630f4bbb7d95aa3f
# Tag: 1.10.0--1.20.1, Build date: 2026-01-29T15:57:30Z
# new approach using oci images: to switch to the new approach, uncommment
# the 'package' line above and remove the next two lines, keeping the pluginConfig.
# disabled: true
- package: ./dynamic-plugins/dist/red-hat-developer-hub-backstage-plugin-global-header
disabled: false
pluginConfig:
app:
sidebar:
search: false
settings: false
logo: false
dynamicPlugins:
frontend:
default.main-menu-items:
menuItems:
default.create:
title: ''
default.admin:
title: Administration
textKey: menuItem.administration
icon: admin
red-hat-developer-hub.backstage-plugin-global-header:
translationResources:
- importName: globalHeaderTranslations
ref: globalHeaderTranslationRef
mountPoints:
- mountPoint: application/header
importName: GlobalHeader
config:
position: above-sidebar
- mountPoint: global.header/component
importName: CompanyLogo
config:
priority: 200
props:
to: /
- mountPoint: global.header/component
importName: SearchComponent
config:
priority: 100
- mountPoint: global.header/component
importName: Spacer
config:
priority: 99
props:
growFactor: 0
- mountPoint: global.header/component
importName: HeaderIconButton
config:
priority: 90
props:
title: Self-service
titleKey: create.title
icon: add
to: create
- mountPoint: global.header/component
importName: StarredDropdown
config:
priority: 85
- mountPoint: global.header/component
importName: ApplicationLauncherDropdown
config:
priority: 82
- mountPoint: global.header/application-launcher
importName: MenuItemLink
config:
section: Documentation
priority: 150
props:
title: Developer Hub
titleKey: applicationLauncher.developerHub
icon: developerHub
link: https://docs.redhat.com/en/documentation/red_hat_developer_hub
- mountPoint: global.header/application-launcher
importName: MenuItemLink
config:
section: Developer Tools
priority: 100
props:
title: RHDH Local
titleKey: applicationLauncher.rhdhLocal
icon: developerHub
link: https://github.com/redhat-developer/rhdh-local
- mountPoint: global.header/component
importName: HelpDropdown
config:
priority: 80
- mountPoint: global.header/help
importName: SupportButton
config:
priority: 10
- mountPoint: global.header/component
importName: NotificationButton
config:
priority: 70
- mountPoint: global.header/component
importName: Divider
config:
priority: 50
- mountPoint: global.header/component
importName: ProfileDropdown
config:
priority: 10
- mountPoint: global.header/profile
importName: MenuItemLink
config:
priority: 100
props:
title: Settings
titleKey: profile.settings
link: /settings
icon: manageAccounts
- mountPoint: global.header/profile
importName: MenuItemLink
config:
priority: 90
props:
title: My profile
titleKey: profile.myProfile
type: myProfile
icon: account
- mountPoint: global.header/profile
importName: LogoutButton
config:
priority: 10
# - package: oci://registry.access.redhat.com/rhdh/red-hat-developer-hub-backstage-plugin-quickstart@sha256:588df44c05fbccd3a5d9fd30f89974abdded9063d24ee41bd42642222999babe
# Tag: 1.10.0--1.8.2, Build date: 2026-01-29T15:49:16Z
# new approach using oci images: to switch to the new approach, uncommment
# the 'package' line above and remove the next two lines, keeping the pluginConfig.
# disabled: true
- package: ./dynamic-plugins/dist/red-hat-developer-hub-backstage-plugin-quickstart
disabled: false
pluginConfig:
app:
quickstart:
- title: Set up authentication
titleKey: steps.setupAuthentication.title
icon: Admin
description: Set up secure login credentials to protect your account from
unauthorized access.
descriptionKey: steps.setupAuthentication.description
cta:
text: Learn more
textKey: steps.setupAuthentication.ctaTitle
link: https://docs.redhat.com/en/documentation/red_hat_developer_hub/latest/html/authentication_in_red_hat_developer_hub/
- title: Configure RBAC
titleKey: steps.configureRbac.title
icon: Rbac
description: Assign roles and permissions to control who can view, create,
or edit resources, ensuring secure and efficient collaboration.
descriptionKey: steps.configureRbac.description
cta:
text: Manage access
textKey: steps.configureRbac.ctaTitle
link: /rbac
- title: Configure Git
titleKey: steps.configureGit.title
icon: Git
description: Connect your Git providers, such as GitHub to manage code,
automate workflows, and integrate with platform features.
descriptionKey: steps.configureGit.description
cta:
text: Learn more
textKey: steps.configureGit.ctaTitle
link: https://docs.redhat.com/en/documentation/red_hat_developer_hub/latest/html/integrating_red_hat_developer_hub_with_github/
- title: Manage plugins
titleKey: steps.managePlugins.title
icon: Plugins
description: Browse and install extensions to add features, connect with
external tools, and customize your experience.
descriptionKey: steps.managePlugins.description
cta:
text: Explore plugins
textKey: steps.managePlugins.ctaTitle
link: /extensions
- title: Import application
roles:
- developer
icon: Import
description: Import your existing code and services into the catalog to
organize and access them through your developer portal.
cta:
text: Import
link: /bulk-import
- title: Learn about the Catalog
roles:
- developer
icon: Catalog
description: Discover all software components, services, and APIs, and
view their owners and documentation.
cta:
text: View Catalog
link: /catalog
- title: Explore Self-service templates
roles:
- developer
icon: SelfService
description: Use our self-service templates to quickly set up new projects,
services, or documentation.
cta:
text: Explore templates
link: /create
- title: Find all Learning Paths
roles:
- developer
icon: Learning
description: Integrate tailored e-learning into your workflows with Learning
Paths to accelerate onboarding, close skill gaps, and promote best practices.
cta:
text: View Learning Paths
link: /learning-paths
dynamicPlugins:
frontend:
red-hat-developer-hub.backstage-plugin-quickstart:
translationResources:
- importName: quickstartTranslations
module: Alpha
ref: quickstartTranslationRef
mountPoints:
- mountPoint: application/provider
importName: QuickstartDrawerProvider
- mountPoint: application/internal/drawer-state
importName: QuickstartDrawerStateExposer
- mountPoint: application/internal/drawer-content
importName: QuickstartDrawerContent
config:
id: quickstart
- mountPoint: global.header/help
importName: QuickstartButton
config:
priority: 100
- package: oci://ghcr.io/redhat-developer/rhdh-plugin-export-overlays/backstage-community-plugin-scaffolder-backend-module-quay:bs_1.45.3__2.14.0
disabled: false
# - package: oci://registry.access.redhat.com/rhdh/backstage-community-plugin-acr@sha256:0e696523e14e975ba81765bba6b053b7baf8b840e1e302006071c866f9a1131b
# Tag: 1.10.0--1.20.2, Build date: 2026-02-02T22:19:00Z
# new approach using oci images: to switch to the new approach, uncommment
# the 'package' line above and remove the next two lines, keeping the pluginConfig.
# disabled: true
- package: ./dynamic-plugins/dist/backstage-community-plugin-acr
disabled: true
pluginConfig:
dynamicPlugins:
frontend:
backstage-community.plugin-acr:
mountPoints:
- mountPoint: entity.page.image-registry/cards
importName: AcrImagesEntityContent
config:
layout:
gridColumn: 1 / -1
if:
anyOf:
- isAcrAvailable
# - package: oci://registry.access.redhat.com/rhdh/backstage-community-plugin-catalog-backend-module-keycloak@sha256:7a6ebe07a9efa14a511673491970c7508470dd856642d45958bc768ecc21a240
# Tag: 1.10.0--3.16.0, Build date: 2026-01-29T16:08:53Z
# new approach using oci images: to switch to the new approach, uncommment
# the 'package' line above and remove the next two lines, keeping the pluginConfig.
# disabled: true
- package: ./dynamic-plugins/dist/backstage-community-plugin-catalog-backend-module-keycloak-dynamic
disabled: true
pluginConfig:
catalog:
providers:
keycloakOrg:
default:
baseUrl: ${KEYCLOAK_BASE_URL}
loginRealm: ${KEYCLOAK_LOGIN_REALM}
realm: ${KEYCLOAK_REALM}
clientId: ${KEYCLOAK_CLIENT_ID}
clientSecret: ${KEYCLOAK_CLIENT_SECRET}
schedule:
frequency:
minutes: 60
initialDelay:
seconds: 15
timeout:
minutes: 50
# - package: oci://registry.access.redhat.com/rhdh/backstage-community-plugin-catalog-backend-module-pingidentity@sha256:05521725b507f62c80dd0c186fa0fa1f8b2d3d5109aa47b4b059abf97dab14f9
# Tag: 1.10.0--0.9.0, Build date: 2026-01-29T16:20:26Z
# new approach using oci images: to switch to the new approach, uncommment
# the 'package' line above and remove the next two lines, keeping the pluginConfig.
# disabled: true
- package: ./dynamic-plugins/dist/backstage-community-plugin-catalog-backend-module-pingidentity-dynamic
disabled: true
pluginConfig:
catalog:
providers:
pingIdentityOrg: {}
# - package: oci://registry.access.redhat.com/rhdh/backstage-community-plugin-catalog-backend-module-scaffolder-relation-processor@sha256:881ec85345871421131b54e459b9d44ebd9716e04ef1f528dff3b426e3855e5e
# Tag: 1.10.0--2.11.0, Build date: 2026-02-17T17:09:13Z
# new approach using oci images: to switch to the new approach, uncommment
# the 'package' line above and remove the next two lines, keeping the pluginConfig.
# disabled: true
- package: ./dynamic-plugins/dist/backstage-community-plugin-catalog-backend-module-scaffolder-relation-processor-dynamic
disabled: true
# - package: oci://registry.access.redhat.com/rhdh/backstage-community-plugin-ocm@sha256:f5f82eafaa8bcdea4d71666a36a813b05ba21f8c85357df0228951707fdc233e
# Tag: 1.10.0--5.11.1, Build date: 2026-01-29T16:17:31Z
# new approach using oci images: to switch to the new approach, uncommment
# the 'package' line above and remove the next two lines, keeping the pluginConfig.
# disabled: true
- package: ./dynamic-plugins/dist/backstage-community-plugin-ocm
disabled: true
pluginConfig:
dynamicPlugins:
frontend:
backstage-community.plugin-ocm:
appIcons:
- name: ocmIcon
importName: OcmIcon
dynamicRoutes:
- path: /ocm
importName: OcmPage
menuItem:
icon: ocmIcon
text: Clusters
textKey: menuItem.clusters
mountPoints:
- mountPoint: entity.page.overview/context
importName: ClusterContextProvider
- mountPoint: entity.page.overview/cards
importName: ClusterAvailableResourceCard
config:
layout:
gridColumnEnd:
lg: span 4
md: span 6
xs: span 12
if:
allOf:
- isKind: resource
- isType: kubernetes-cluster
- mountPoint: entity.page.overview/cards
importName: ClusterInfoCard
config:
layout:
gridColumnEnd:
lg: span 4
md: span 6
xs: span 12
if:
allOf:
- isKind: resource
- isType: kubernetes-cluster
# - package: oci://registry.access.redhat.com/rhdh/backstage-community-plugin-ocm-backend@sha256:38a7c015a180face8b25b62db72474e504629ae1663b45c0405e103f80b7ea97
# Tag: 1.10.0--5.12.2, Build date: 2026-01-29T16:25:55Z
# new approach using oci images: to switch to the new approach, uncommment
# the 'package' line above and remove the next two lines, keeping the pluginConfig.
# disabled: true
- package: ./dynamic-plugins/dist/backstage-community-plugin-ocm-backend-dynamic
disabled: true
pluginConfig:
catalog:
providers:
ocm:
default:
name: ${OCM_HUB_NAME}
url: ${OCM_HUB_URL}
serviceAccountToken: ${OCM_SA_TOKEN}
owner: janus-authors
# - package: oci://registry.access.redhat.com/rhdh/backstage-community-plugin-rbac@sha256:ed578944c397b18d679747566ede1f5d64fc4cc72fe331027bd775ea552d1087
# Tag: 1.10.0--1.47.3, Build date: 2026-01-30T20:19:14Z
# new approach using oci images: to switch to the new approach, uncommment
# the 'package' line above and remove the next two lines, keeping the pluginConfig.
# disabled: true
- package: ./dynamic-plugins/dist/backstage-community-plugin-rbac
disabled: true
pluginConfig:
dynamicPlugins:
frontend:
backstage-community.plugin-rbac:
translationResources:
- importName: rbacTranslations
ref: rbacTranslationRef
module: Alpha
appIcons:
- name: rbacIcon
importName: RbacIcon
dynamicRoutes:
- path: /rbac
importName: RbacPage
menuItem:
icon: rbacIcon
text: RBAC
textKey: menuItem.rbac
menuItems:
rbac:
parent: default.admin
icon: rbacIcon
# - package: oci://registry.access.redhat.com/rhdh/backstage-community-plugin-scaffolder-backend-module-kubernetes@sha256:8c8a6f1f110b39f6819217387aa21dc86a3e41878b91f8239814527553031da1
# Tag: 1.10.0--2.13.0, Build date: 2026-01-30T19:30:18Z
# new approach using oci images: to switch to the new approach, uncommment
# the 'package' line above and remove the next two lines, keeping the pluginConfig.
# disabled: true
- package: ./dynamic-plugins/dist/backstage-community-plugin-scaffolder-backend-module-kubernetes-dynamic
disabled: true
# - package: oci://registry.access.redhat.com/rhdh/backstage-community-plugin-tech-radar@sha256:be977d3dd9a8de9ade044731a293e33ea396cadacbf45f266353367310762a5e
# Tag: 1.10.0--1.13.0, Build date: 2026-01-29T16:36:56Z
# new approach using oci images: to switch to the new approach, uncommment
# the 'package' line above and remove the next two lines, keeping the pluginConfig.
# disabled: true
- package: ./dynamic-plugins/dist/backstage-community-plugin-tech-radar
disabled: true
pluginConfig:
dynamicPlugins:
frontend:
backstage-community.plugin-tech-radar:
apiFactories:
- importName: TechRadarApi
appIcons:
- name: techRadar
importName: TechRadarIcon
dynamicRoutes:
- path: /tech-radar
importName: TechRadarPage
menuItem:
icon: techRadar
text: menuItem.techRadar
textKey: menuItem.techRadar
config:
props:
width: 1500
height: 800
# - package: oci://registry.access.redhat.com/rhdh/backstage-community-plugin-tech-radar-backend@sha256:edb18149ee32751bb530be3e9e9b0296ec44e146820ffdd15b87765588f1b55e
# Tag: 1.10.0--1.12.0, Build date: 2026-01-29T16:31:09Z
# new approach using oci images: to switch to the new approach, uncommment
# the 'package' line above and remove the next two lines, keeping the pluginConfig.
# disabled: true
- package: ./dynamic-plugins/dist/backstage-community-plugin-tech-radar-backend-dynamic
disabled: true
pluginConfig:
techRadar:
url: ${TECH_RADAR_DATA_URL}
# - package: oci://registry.access.redhat.com/rhdh/backstage-community-plugin-topology@sha256:810378511c2ac5f8299a0fe2a9af20d3d436128b6d7bf4c534ad33874cdc7e57
# Tag: 1.10.0--2.9.4, Build date: 2026-02-02T22:19:02Z
# new approach using oci images: to switch to the new approach, uncommment
# the 'package' line above and remove the next two lines, keeping the pluginConfig.
# disabled: true
- package: ./dynamic-plugins/dist/backstage-community-plugin-topology
disabled: true
pluginConfig:
dynamicPlugins:
frontend:
backstage-community.plugin-topology:
translationResources:
- importName: topologyTranslations
ref: topologyTranslationRef
module: Alpha
mountPoints:
- mountPoint: entity.page.topology/cards
importName: TopologyPage
config:
layout:
gridColumn: 1 / -1
height: 75vh
if:
anyOf:
- hasAnnotation: backstage.io/kubernetes-id
- hasAnnotation: backstage.io/kubernetes-namespace
# - package: oci://registry.access.redhat.com/rhdh/backstage-plugin-catalog-backend-module-github@sha256:2b4d57a30393a4d467dcf8a6c10ad8b492ffcd97790bb65f3033906b684e9bb3
# Tag: 1.10.0--0.11.2, Build date: 2026-01-29T15:54:09Z
# new approach using oci images: to switch to the new approach, uncommment
# the 'package' line above and remove the next two lines, keeping the pluginConfig.
# disabled: true
- package: ./dynamic-plugins/dist/backstage-plugin-catalog-backend-module-github-dynamic
disabled: true
pluginConfig:
catalog:
providers:
github:
providerId:
organization: ${GITHUB_ORG}
# - package: oci://registry.access.redhat.com/rhdh/backstage-plugin-catalog-backend-module-github-org@sha256:01fad5315536e4292f9afb5a8e86d6d9860414a6fe956812724b676fe14cd560
# Tag: 1.10.0--0.3.16, Build date: 2026-01-29T16:00:18Z
# new approach using oci images: to switch to the new approach, uncommment
# the 'package' line above and remove the next two lines, keeping the pluginConfig.
# disabled: true
- package: ./dynamic-plugins/dist/backstage-plugin-catalog-backend-module-github-org-dynamic
disabled: true
pluginConfig:
catalog:
providers:
githubOrg:
id: production
githubUrl: ${GITHUB_URL}
orgs:
- ${GITHUB_ORG}
schedule:
frequency:
minutes: 60
initialDelay:
seconds: 15
timeout:
minutes: 15
# - package: oci://registry.access.redhat.com/rhdh/backstage-plugin-catalog-backend-module-gitlab@sha256:7d018563f6ebd8e28ff643d4c74a9cf305c95d734668ff5e0026e2170bae9128
# Tag: 1.10.0--0.7.5, Build date: 2026-01-29T16:00:24Z
# new approach using oci images: to switch to the new approach, uncommment
# the 'package' line above and remove the next two lines, keeping the pluginConfig.
# disabled: true
- package: ./dynamic-plugins/dist/backstage-plugin-catalog-backend-module-gitlab-dynamic
disabled: true
pluginConfig:
catalog:
providers:
gitlab: {}
# - package: oci://registry.access.redhat.com/rhdh/backstage-plugin-catalog-backend-module-gitlab-org@sha256:b61ffbe45b12ce7360db3d6e188fa00e97942644035446895723329c90d5f677
# Tag: 1.10.0--0.2.15, Build date: 2026-01-29T16:28:02Z
# new approach using oci images: to switch to the new approach, uncommment
# the 'package' line above and remove the next two lines, keeping the pluginConfig.
# disabled: true
- package: ./dynamic-plugins/dist/backstage-plugin-catalog-backend-module-gitlab-org-dynamic
disabled: true
pluginConfig:
catalog:
providers:
gitlab: {}
# - package: oci://registry.access.redhat.com/rhdh/backstage-plugin-catalog-backend-module-ldap@sha256:f740955061f2b2520d0486f68da1ab47d50c72862642d54f0e43c551c2b1e8af
# Tag: 1.10.0--0.12.0, Build date: 2026-01-29T15:46:11Z
# new approach using oci images: to switch to the new approach, uncommment
# the 'package' line above and remove the next two lines, keeping the pluginConfig.
# disabled: true
- package: ./dynamic-plugins/dist/backstage-plugin-catalog-backend-module-ldap-dynamic
disabled: true
pluginConfig:
catalog:
providers:
ldapOrg:
default:
target: ${LDAP_TARGET_URL}
bind:
dn: ${LDAP_BIND_DN}
secret: ${LDAP_BIND_SECRET}
users:
- dn: ${LDAP_USERS_DN}
options:
filter: (uid=*)
groups:
- dn: ${LDAP_GROUPS_DN}
options:
filter: (cn=*)
schedule:
frequency:
minutes: 60
initialDelay:
seconds: 15
timeout:
minutes: 15
# - package: oci://registry.access.redhat.com/rhdh/backstage-plugin-catalog-backend-module-msgraph@sha256:e92594f74fcff77b72e5d14c2b85d6f110b3404a9a6984ad043182af01470e1b
# Tag: 1.10.0--0.8.2, Build date: 2026-01-29T15:56:54Z
# new approach using oci images: to switch to the new approach, uncommment
# the 'package' line above and remove the next two lines, keeping the pluginConfig.
# disabled: true
- package: ./dynamic-plugins/dist/backstage-plugin-catalog-backend-module-msgraph-dynamic
disabled: true
pluginConfig:
catalog:
providers:
microsoftGraphOrg:
providerId:
target: https://graph.microsoft.com/v1.0
tenantId: ${MICROSOFT_TENANT_ID}
clientId: ${MICROSOFT_CLIENT_ID}
clientSecret: ${MICROSOFT_CLIENT_SECRET}
schedule:
frequency:
minutes: 60
initialDelay:
seconds: 15
timeout:
minutes: 15
# - package: oci://registry.access.redhat.com/rhdh/backstage-plugin-kubernetes@sha256:8248ba7ec02fcdc3c0d9ddd530df89482e42e190c5dd161a96a56091d21433da
# Tag: 1.10.0--0.12.13, Build date: 2026-01-30T19:31:25Z
# new approach using oci images: to switch to the new approach, uncommment
# the 'package' line above and remove the next two lines, keeping the pluginConfig.
# disabled: true
- package: ./dynamic-plugins/dist/backstage-plugin-kubernetes
disabled: true
pluginConfig:
dynamicPlugins:
frontend:
backstage.plugin-kubernetes:
mountPoints:
- mountPoint: entity.page.kubernetes/cards
importName: EntityKubernetesContent
config:
layout:
gridColumn: 1 / -1
if:
anyOf:
- hasAnnotation: backstage.io/kubernetes-id
- hasAnnotation: backstage.io/kubernetes-namespace
# - package: oci://registry.access.redhat.com/rhdh/backstage-plugin-kubernetes-backend@sha256:b464ce2365c9ec558423266300950fef6e5174dab24b013fd320aafae48287a3
# Tag: 1.10.0--0.20.4, Build date: 2026-01-30T19:31:38Z
# new approach using oci images: to switch to the new approach, uncommment
# the 'package' line above and remove the next two lines, keeping the pluginConfig.
# disabled: true
- package: ./dynamic-plugins/dist/backstage-plugin-kubernetes-backend-dynamic
disabled: true
pluginConfig:
kubernetes:
serviceLocatorMethod: