forked from RedHatInsights/cloud-services-config
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.yml
1325 lines (1237 loc) · 33.7 KB
/
main.yml
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
access-requests:
title: Access Requests
description: Frontend for Red Hat employee to request access to customer account
deployment_repo: https://github.com/RedHatInsights/access-requests-build
frontend:
module:
appName: access-requests
scope: accessRequests
module: ./RootApp
title: Access Requests
paths:
- /internal/access-requests
acs:
title: Advanced Cluster Security
api:
versions:
- v1
description: Frontend for Red Hat employees to manage ACS instances
deployment_repo: https://github.com/RedHatInsights/acs-ui-build
frontend:
paths:
- /application-services/acs
source_repo: https://github.com/RedHatInsights/acs-ui
advisor:
title: Advisor
api:
versions:
- v1
apiName: insights
channel: '#advisor'
deployment_repo: https://github.com/RedHatInsights/insights-advisor-frontend-build
productId: Red Hat Insights
frontend:
module: advisor#./RootApp
section: operations
paths:
- /insights/advisor
sub_apps:
- id: recommendations
title: Recommendations
- id: systems
title: Systems
- id: topics
title: Topics
source_repo: https://github.com/RedHatInsights/insights-advisor-frontend
ansible-dashboard:
title: Overview
deployment_repo: https://github.com/RedHatInsights/ansible-platform-dashboard-build
frontend:
module:
appName: ansible-dashboard
scope: ansibleDashboard
module: ./RootApp
group: ansible-dashboard
paths:
- /ansible
- /ansible/ansible-dashboard
source_repo: https://github.com/RedHatInsights/ansible-platform-dashboard
ansible:
title: Ansible Automation Platform
frontend:
sub_apps:
- id: ansible-dashboard
default: true
group: ansible-dashboard
- id: automation-hub
- id: catalog
- id: automation-analytics
top_level: true
api-docs:
title: API Documentation
deployment_repo: https://github.com/RedHatInsights/api-frontend-build
frontend:
module:
appName: api-docs
scope: apiDocs
module: ./RootApp
group: docs
paths:
- /docs/api
- /docs
source_repo: https://github.com/RedHatInsights/api-frontend
applications:
title: Applications
deployment_repo: https://github.com/RedHatInsights/settings-frontend-build
permissions:
method: isOrgAdmin
apps:
- cost-management
frontend:
module: applications#./RootApp
sub_apps:
- id: advisor
title: Advisor
permissions:
method: isEntitled
args:
- insights
- id: cost-management
title: Cost Management
permissions:
method: isEntitled
args:
- cost_management
paths:
- /settings/applications
source_repo: https://github.com/RedHatInsights/settings-frontend
approval:
title: Approval
api:
versions:
- v1
deployment_repo: https://github.com/RedHatInsights/approvals-frontend-deploy.git
frontend:
module:
appName: approval
scope: approval
module: ./RootApp
paths:
- /ansible/catalog/approval
reload: catalog/approval
source_repo: https://github.com/RedHatInsights/approval-ui
automation-analytics:
title: Automation Analytics
api:
versions:
- v1
isBeta: true
deployment_repo: https://github.com/RedHatInsights/tower-analytics-frontend-build.git
productId: Ansible Automation Analytics
frontend:
paths:
- /ansible/automation-analytics
sub_apps:
- id: reports
title: Reports
- id : savings-planner
title: Savings Planner
- id : automation-calculator
title: Automation Calculator
- id: organization-statistics
title: Organization Statistics
- id: job-explorer
title: Job Explorer
- id: clusters
title: Clusters
- id: notifications
title: Notifications
source_repo: https://github.com/RedHatInsights/tower-analytics-frontend
automation-hub:
title: Automation Hub
api:
versions:
- v3
deployment_repo: https://github.com/RedHatInsights/ansible-hub-ui-build
productId: Ansible Automation Hub
frontend:
paths:
- /ansible/automation-hub
sub_apps:
- id: ''
title: Collections
default: true
- id: partners
title: Partners
- id: repositories
title: Repo Management
- id: tasks
title: Task Management
- id: token
title: Connect to Hub
source_repo: https://github.com/ansible/ansible-hub-ui
catalog:
title: Automation Services Catalog
api:
versions:
- v1
channel: '#insights-catalog'
deployment_repo: https://github.com/RedHatInsights/catalog-static-deploy
frontend:
paths:
- /ansible/catalog
sub_apps:
- id: products
title: Products
- id: portfolios
title: Portfolios
default: true
- id: platforms
title: Platforms
permissions:
method: hasPermissions
args:
- [catalog:portfolios:create]
- id: order-processes
title: Order processes
permissions:
method: hasPermissions
args:
- [catalog:order_processes:read]
- id: orders
title: Orders
- id: approval
source_repo: https://github.com/RedHatInsights/catalog-ui
ccx:
title: OpenShift Insights
api:
subItems:
insights-results-aggregator:
title: Insights Results Aggregator
versions:
- v2
- v1
gathering:
title: Insights Operator Gathering Conditions Service
versions:
- v1
chrome:
channel: '#flip-mode-squad'
deployment_repo: https://github.com/RedHatInsights/insights-chrome-build
source_repo: https://github.com/RedHatInsights/insights-chrome
cloud-tutorials:
title: Cloud Tutorials
description: Cloud Tutorials for Open Data Hub
deployment_repo: https://github.com/cloudmosaic/cloud-tutorials-frontend-build
frontend:
module:
appName: cloud-tutorials
scope: cloudTutorials
module: ./RootApp
title: Cloud Tutorials
paths:
- /mosaic/cloud-tutorials
commit-tracker:
title: Commit Tracker
description: The Commit Tracker Tool
disabled_on_prod: true
deployment_repo: https://github.com/RedHatInsights/commit-tracker-frontend-build
frontend:
title: Commit Tracker
paths:
- /internal
- /internal/commit-tracker
compliance:
title: Compliance
api:
versions:
- v1
deployment_repo: https://github.com/RedHatInsights/compliance-frontend-build
frontend:
section: security
module: compliance#./RootApp
paths:
- /insights/compliance
sub_apps:
- id: reports
title: Reports
default: true
- id: scappolicies
title: SCAP Policies
- id: systems
title: Systems
source_repo: https://github.com/RedHatInsights/compliance-frontend
config:
title: Cloud Services Config
deployment_repo: https://github.com/RedHatInsights/cloud-services-config
source_repo: https://github.com/RedHatInsights/cloud-services-config
connect:
title: Cloud Connect
deployment_repo: https://github.com/RedHatInsights/stratosphere-frontend-build
disabled_on_prod: true
frontend:
paths:
- /connect
mailing_list: [email protected]
content-sources:
title: Repositories
api:
versions:
- v1
channel: '#content-services-dev'
source_repo: https://github.com/content-services/content-sources-frontend
deployment_repo: https://github.com/RedHatInsights/content-sources-frontend-build
cost-management:
title: Cost Management
top_level: true
api:
versions:
- v1
isBeta: true
channel: '#koku'
deployment_repo: https://github.com/RedHatInsights/cost-management-build
productId: Red Hat Cost Management
description: >
Cost Management is an application that provides users a view of their
enterprise cost. Cost Management allows users to evaluate the cost on
infrastructures like Amazon Web Services (AWS) across multiple *master*
accounts, breaking down to service usage, compute usage, and storage
allocation. Details can also be broken down utilizing tagging to view
data attributed to project or cost center assignments. Cost Management
also allows users to breakdown cost at the platform level by associating
cost with OpenShift clusters, nodes, and the projects running their. Cost
can be determined by deriving it from the underlying infrastructure (like
AWS) or deriving it based on a user set of rates.
docs: https://koku.readthedocs.io/en/latest/
frontend:
paths:
- /cost-management
- /openshift/cost-management
module:
appName: cost-management
group: cost-management
scope: costManagement
module: ./RootApp
sub_apps:
- id: ''
title: Overview
default: true
group: cost-management
- id: ocp
title: OpenShift
group: cost-management
- id: aws
title: Amazon Web Services
group: cost-management
- id: azure
title: Microsoft Azure
group: cost-management
- id: gcp
title: Google Cloud Platform
group: cost-management
- id: oci
title: Oracle Cloud Infrastructure
group: cost-management
- id: ibm
title: IBM Cloud
group: cost-management
- id: cost-models
title: Cost models
group: cost-management
- id: explorer
title: Cost Explorer
group: cost-management
source_repo: https://github.com/project-koku-ui/
mailing_list: [email protected]
dashboard:
title: Dashboard
channel: '#advisor'
deployment_repo: https://github.com/RedHatInsights/insights-dashboard-build
frontend:
module:
appName: dashboard
scope: dashboard
module: ./RootApp
group: insights
paths:
- /insights
- /insights/dashboard
source_repo: https://github.com/RedHatInsights/insights-dashboard
docs:
title: Documentation
channel: '#flip-mode-squad'
frontend:
sub_apps:
- id: api-docs
reload: api
default: true
- id: product
top_level: true
dbaas:
title: Database Access
deployment_repo: https://github.com/RedHatInsights/dbaas-ui-build
source_repo: https://github.com/RedHatInsights/dbaas-ui
drift:
title: Drift
api:
subItems:
drift:
versions:
- v1
title: Comparison reports
system-baseline:
versions:
- v1
title: Baselines
historical-system-profiles:
versions:
- v1
title: Historical system profiles
deployment_repo: https://github.com/RedHatInsights/drift-frontend-build
frontend:
module: drift#./RootApp
title: Drift
section: operations
paths:
- /insights/drift
sub_apps:
- id: ''
title: Comparison
default: true
- id: baselines
title: Baselines
source_repo: https://github.com/RedHatInsights/drift-frontend
edge:
title: RHEL for Edge
api:
versions:
- v1
isBeta: true
deployment_repo: https://github.com/RedHatInsights/edge-frontend-build
source_repo: https://github.com/RedHatInsights/edge-frontend
top_level: true
permissions:
method: withEmail
args:
- "@redhat.com"
frontend:
module:
appName: edge
scope: edge
module: ./RootApp
group: fleet-management
title: Fleet Management
paths:
- /edge
sub_apps:
- id: fleet-management
default: true
title: Fleet Management
group: fleet-management
- id: manage-images
title: Manage images
group: fleet-management
frontend-assets:
title: Frontend Assets
deployment_repo: https://github.com/RedHatInsights/frontend-assets-build.git
source_repo: https://github.com/RedHatInsights/frontend-assets
hac-core:
title: HAC
deployment_repo: https://github.com/RedHatInsights/hac-core-frontend-build
source_repo: https://github.com/RedHatInsights/hac-core-frontend
frontend:
paths:
- /hac
- /hac/core
hac-dev:
title: HAC Developer Experience
deployment_repo: https://github.com/openshift/hac-dev
source_repo: https://github.com/openshift/hac-dev
frontend:
paths:
- /hac/app-studio
image-builder:
title: Image Builder
api:
versions:
- v1
isBeta: true
deployment_repo: https://github.com/RedHatInsights/image-builder-frontend-build
frontend:
section: operations
module:
appName: image-builder
scope: image_builder
module: ./RootApp
title: Image Builder
paths:
- /insights/image-builder
source_repo: https://github.com/RedHatInsights/image-builder-frontend
ingress:
title: Ingress
api:
versions:
- v1
insights:
title: Red Hat Enterprise Linux
frontend:
title: Red Hat Enterprise Linux
sub_apps:
- id: dashboard
default: true
- id: advisor
- id: drift
- id: image-builder
- id: inventory
- id: vulnerability
- id: compliance
- id: policies
- id: patch
- id: malware
- id: subscriptions
section: business
- id: ros
- id: registration
- id: remediations
top_level: true
integrations:
title: Integrations
channel: '#cloudservices-notifications'
api:
versions:
- v1
frontend:
app_base: notifications
module:
appName: integrations
scope: notifications
module: ./RootApp
manifest: /apps/notifications/fed-mods.json
paths:
- /settings/integrations
internal:
title: Internal
top_level: true
frontend:
sub_apps:
- id: commit-tracker
default: true
- id: access-requests
inventory:
title: Managed Inventory
api:
versions:
- v1
channel: '#flip-mode-squad'
deployment_repo: https://github.com/RedHatInsights/insights-inventory-frontend-build
frontend:
module: inventory#./RootApp
title: Inventory
section: operations
paths:
- /insights/inventory
source_repo: https://github.com/RedHatInsights/insights-inventory-frontend
landing:
channel: '#flip-mode-squad'
deployment_repo: https://github.com/RedHatInsights/landing-page-frontend-build
source_repo: https://github.com/RedHatInsights/landing-page-frontend
malware:
title: Malware
api:
versions:
- v1
alias:
- malware-detection
channel: '#advisor'
deployment_repo: https://github.com/RedHatInsights/malware-detection-frontend-build
frontend:
section: security
title: Malware
module: malware#./RootApp
paths:
- /insights/malware
sub_apps:
- id: signatures
title: Signatures
- id: systems
title: Systems
source_repo: https://github.com/RedHatInsights/malware-detection-frontend
subscription-inventory:
title: Subscription Inventory
channel: '#subscription-inventory'
deployment_repo: https://github.com/RedHatInsights/subscription-inventory-ui-build
source_repo: https://github.com/RedHatInsights/subscription-inventory-ui
manifests:
title: Manifests
channel: '#subscription-central'
deployment_repo: https://github.com/RedHatInsights/subscription-central-ui-build
frontend:
module:
appName: manifests
scope: manifests
module: ./RootApp
paths:
- /insights/subscriptions/manifests
reload: subscriptions/manifests
source_repo: https://github.com/RedHatInsights/subscription-central-ui
mosaic:
title: Cloud Mosaic
frontend:
sub_apps:
- id: cloud-tutorials
top_level: true
my-user-access:
title: My User Access
channel: '#platform-experience'
infoId: rbac
frontend:
module:
appName: my-user-access
scope: rbac
module: ./RootApp
manifest: /apps/rbac/fed-mods.json
app_base: rbac
paths:
- /settings
- /settings/my-user-access
notifications:
title: Notifications
api:
versions:
- v1
channel: '#cloudservices-notifications'
deployment_repo: https://github.com/RedHatInsights/notifications-frontend-build
frontend:
module: notifications#./RootApp
paths:
- /settings/notifications
sub_apps:
- id: rhel
title: Red Hat Enterprise Linux
group: notifications
default: true
- id: openshift
title: OpenShift
group: notifications
- id: application-services
title: Application Services
group: notifications
source_repo: https://github.com/RedHatInsights/notifications-frontend
openshift:
title: OpenShift (OCM)
api:
versions:
- v1
deployment_repo: https://github.com/RedHatInsights/uhc-portal-frontend-deploy.git
productId: Red Hat Openshift Cluster Manager
frontend:
module:
appName: openshift
scope: openshift
module: ./RootApp
group: openshift
title: OpenShift
paths:
- /openshift
sub_apps:
- id: ''
title: Cluster Management
group: openshift
default: true
- id: overview
title: Overview
group: openshift
- id: releases
title: Releases
group: openshift
- id: downloads
title: Downloads
group: openshift
- id: ocp-advisor
group: insights
- id: subscriptions
title: Subscriptions
section: insights
sub_apps:
- id: openshift-container
title: Container Platform
reload: subscriptions/openshift-container
- id: openshift-quota
title: Dedicated (Annual)
reload: 'quota'
- id: openshift-dedicated
title: Dedicated (On-Demand)
reload: subscriptions/openshift-dedicated
- id: resource-limits
title: Dedicated (On-Demand limits)
reload: 'quota/resource-limits'
- id: rhel
title: RHEL Subscriptions
reload: '../insights/subscriptions/rhel'
- id: cost-management
section: insights
top_level: true
ocp-advisor:
title: Advisor
source_repo: https://github.com/RedHatInsights/ocp-advisor-frontend
deployment_repo: https://github.com/RedHatInsights/ocp-advisor-frontend-build
frontend:
module: ocp-advisor#./RootApp
paths:
- /openshift/insights/advisor
sub_apps:
- id: clusters
title: Clusters
reload: clusters
- id: recommendations
title: Recommendations
reload: recommendations
ocp-vulnerability:
title: Vulnerability
api:
versions:
- v1
channel: '#forum-ccx-vulnerability'
source_repo: https://github.com/RedHatInsights/vuln4shift-frontend
deployment_repo: https://github.com/RedHatInsights/vuln4shift-frontend-build
frontend:
module: ocp-vulnerability#./RootApp
paths:
- /openshift/insights/vulnerability
sub_apps:
- id: cves
title: CVEs
reload: cves
- id: clusters
title: Clusters
reload: clusters
onboarding:
title: Onboarding Test
api:
versions:
- v1
isBeta: true
tags:
- value: "experimental"
title: "Experimental API"
channel: '#flip-mode-squad'
deployment_repo: https://github.com/RedHatInsights/test-onboarding-app-build
frontend:
paths:
- /staging/test-onboarding-app
source_repo: https://github.com/RedHatInsights/test-onboarding-app
provisioning:
title: Launch
api:
versions:
- v1
channel: '#envision-team'
source_repo: https://github.com/RHEnVision/provisioning-frontend
deployment_repo: https://github.com/RedHatInsights/provisioning-frontend-build
streams:
title: "Streams for Apache Kafka"
frontend:
sub_apps:
- id: kafkas
title: "Kafka Instances"
default: true
- id: streams-docs
title: Documentation
navigate: https://access.redhat.com/documentation/en-us/red_hat_openshift_streams_for_apache_kafka/
service-registry:
title: "Service Registry"
frontend:
sub_apps:
- id: instances
title: "Service Registry Instances"
- id: streams-docs
title: Documentation
navigate: https://access.redhat.com/documentation/en-us/red_hat_openshift_service_registry
rhosak-ui:
title: Streams for Apache Kafka - Application Services
deployment_repo: https://github.com/RedHatInsights/rhosak-ui-build
frontend:
title: Streams for Apache Kafka
isBeta: true
paths:
- /application-services/streams
application-services:
title: Application Services
api:
subItems:
kafkamgmt:
title: "OpenShift Streams for Apache Kafka Management API"
github:
owner: redhat-developer
repo: app-services-sdk-core
path: kas-fleet-manager.yaml?ref=doc-portal
connectormgmt:
title: "OpenShift Connectors Management API "
github:
owner: redhat-developer
repo: app-services-sdk-core
path: connector_mgmt.yaml?ref=doc-portal
serviceregistrymgmt:
title: "OpenShift Service Registry Management API"
github:
owner: redhat-developer
repo: app-services-sdk-core
path: srs-fleet-manager.json?ref=doc-portal
smarteventsmgmt:
title: "Smart Events Management API"
github:
owner: redhat-developer
repo: app-services-sdk-core
path: smartevents-mgmt.yaml?ref=doc-portal
serviceaccountsmgmt:
title: "Service Accounts Management API"
github:
owner: redhat-developer
repo: app-services-sdk-core
path: service-accounts.yaml?ref=doc-portal
kafkainstance:
title: "OpenShift Streams for Apache Kafka Instance API"
readonly: true
github:
owner: redhat-developer
repo: app-services-sdk-core
path: kafka-admin-rest.yaml?ref=doc-portal
registryinstance:
title: "OpenShift Service Registry Instance API"
readonly: true
github:
owner: redhat-developer
repo: app-services-sdk-core
path: registry-instance.json?ref=doc-portal
deployment_repo: https://github.com/RedHatInsights/rhosak-dashboard-build
frontend:
title: Application Services
isBeta: true
paths:
- /application-services
sub_apps:
- id: overview
title: "Overview"
default: true
group: overview
- id: learning-resources
title: "Learning Resources"
group: overview
- id: api-management
title: "API Management"
group: overview
- id: overview
title: "Overview"
group: overview
- id: streams
title: "Kafka Instances"
group: overview
- id: service-registry
title: "Service Registry"
group: overview
- id: smart-events
title: "Smart Events"
group: overview
- id: streams
group: overview
- id: learning-resources
title: "Learning Resources"
group: overview
- id: streams
title: "Streams for Apache Kafka"
group: overview
top_level: true
source_repo: https://github.com/bf2fc6cc711aee1a0c2a/mk-ui-host
rhosak-data-plane-ui-build:
title: Data Plane UI for RHOSAK
deployment_repo: https://github.com/RedHatInsights/rhosak-data-plane-ui-build
frontend:
paths:
- /application-services/rhosak-data-plane-ui-build
rhosak-control-plane-ui-build:
title: Control Plane UI for RHOSAK
deployment_repo: https://github.com/RedHatInsights/rhosak-control-plane-ui-build
cos-ui-build:
title: UI for COS
deployment_repo: https://github.com/RedHatInsights/cos-ui-build
dbz-ui-build:
title: UI for Debezium
deployment_repo: https://github.com/RedHatInsights/dbz-ui-build
sr-ui-build:
title: UI for Service Registry
deployment_repo: https://github.com/RedHatInsights/sr-ui-build
srs-ui-build:
title: UI for Service Registry Control Plane
deployment_repo: https://github.com/RedHatInsights/srs-ui-build
ads-ui-build:
title: UI for API Designer
deployment_repo: https://github.com/RedHatInsights/ads-ui-build
ads-editors-build:
title: UI for API Designer (Editor Components)
deployment_repo: https://github.com/RedHatInsights/ads-editors-build
se-ui-build:
title: UI for Smart Events
deployment_repo: https://github.com/RedHatInsights/se-ui-build
rhoas-guides-build:
title: Guides for RHOAS
deployment_repo: https://github.com/RedHatInsights/rhoas-guides-build
patch:
title: Patch
api:
versions:
- v2
- v1
isBeta: true
channel: '#team-patchman'
deployment_repo: https://github.com/RedHatInsights/patchman-ui-build
frontend:
section: security
module: patch#./RootApp
title: Patch
paths:
- /insights/patch
sub_apps:
- id: advisories
title: Advisories
default: true
- id: systems
title: Systems
- id: packages
title: Packages
source_repo: https://github.com/RedHatInsights/patchman-ui
playbook-dispatcher:
title: Playbook Dispatcher
api:
versions:
- v1
policies:
title: Policies
api:
versions:
- v1
channel: '#cloudservices-policies'
deployment_repo: https://github.com/RedHatInsights/policies-ui-frontend-build
frontend:
module: policies#./RootApp
section: security
paths:
- /insights/policies
source_repo: https://github.com/RedHatInsights/policies-ui-frontend
product:
title: Product Documentation
deployment_repo: https://github.com/RedHatInsights/docs-frontend-build
frontend:
paths:
- /docs/product
sub_apps:
- id: insights
title: Insights
default: true
- id: cost-management
title: Cost Management
source_repo: https://github.com/RedHatInsights/docs-frontend
rbac:
title: Role-based Access Control