Welcome to mirror list, hosted at ThFree Co, Russian Federation.

default-nav.yaml « _data « content - gitlab.com/gitlab-org/gitlab-docs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e887c07427d1ae2e8951ce30f1111b54d3fde9d1 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
## READ BEFORE EDITING THIS FILE ##
#
### Rules
# - Do not start the URL with "/"
# - Do not add anchors to the links
# - If the URL ends with index.html, leave it empty (e.g. section_url: 'index.html' --> section_url: '')
#
### Options
# - Use "ee_only: true" for categories and docs available only in EE.
#   - When "ee_only: true", use `ee_tier:` to indicate the tiers the feature is available in:
#     - For Ultimate: `ee_tier: 'GitLab Ultimate and GitLab.com Gold'`
#     - For Premium: `ee_tier: 'GitLab Premium, GitLab.com Silver, and higher tiers'`
#     - For Starter: `ee_tier: 'GitLab Starter, GitLab.com Bronze, and higher tiers'`
#     - For self-managed only: `ee_tier: 'GitLab Starter and higher tiers. Not available in GitLab.com'`
#     - For GitLab.com only: `ee_tier: 'GitLab.com Silver only. Not available in GitLab self-managed instances'`
# - Use "external_url: true" for external URLs in docs and categories

sections:
  - section_title: GitLab Docs
    section_url: 'README.html'

  - section_title: Install
    section_url: 'install/README.html'
    section_categories:
      - category_title: Requirements
        category_url: 'install/requirements.html'
      - category_title: Omnibus packages
        category_url: 'https://about.gitlab.com/install/'
        external_url: true
      - category_title: Kubernetes
        category_url: 'https://docs.gitlab.com/charts/'
        external_url: true
      - category_title: Docker
        category_url: 'install/docker.html'
      - category_title: From source
        category_url: 'install/installation.html'
      - category_title: Azure
        category_url: 'install/azure/'
      - category_title: Google Cloud Platform (GCP)
        category_url: 'install/google_cloud_platform/'
      - category_title: Amazon Web Services (AWS)
        category_url: 'install/aws/'

  - section_title: Analytics
    section_url: 'user/analytics/'
    section_categories:
      - category_title: Instance-level
        category_url: 'user/analytics/index.html#instance-level-analytics'
      - category_title: Group-level
        category_url: 'user/analytics/index.html#group-level-analytics'
      - category_title: Project-level
        category_url: 'user/analytics/index.html#project-level-analytics'

  - section_title: Infrastructure
    section_url: 'user/project/clusters/'
    section_categories:
      - category_title: Adding and removing clusters
        category_url: 'user/project/clusters/add_remove_clusters.html'
        docs:
          - doc_title: Add EKS clusters
            doc_url: 'user/project/clusters/add_eks_clusters.html'
          - doc_title: Add GKE clusters
            doc_url: 'user/project/clusters/add_gke_clusters.html'
      - category_title: Group-level clusters
        category_url: 'user/group/clusters/'
      - category_title: Instance-level clusters
        category_url: 'user/instance/clusters/'
      - category_title: Canary deployments
        category_url: 'user/project/canary_deployments.html'
        ee_only: true
        ee_tier: 'GitLab Premium, GitLab.com Silver, and higher tiers'
      - category_title: Cluster environments
        category_url: 'user/clusters/environments.html'
        ee_only: true
        ee_tier: 'GitLab Premium, GitLab.com Silver, and higher tiers'
      - category_title: Deploy boards
        category_url: 'user/project/deploy_boards.html'
        ee_only: true
        ee_tier: 'GitLab Premium, GitLab.com Silver, and higher tiers'
      - category_title: GitLab Managed Apps
        category_url: 'user/clusters/applications.html'
        docs:
          - doc_title: Configuring Crossplane
            doc_url: 'user/clusters/crossplane.html'
      - category_title: Infrastructure as code
        category_url: 'user/infrastructure/index.html'
      - category_title: Kubernetes Agent
        category_url: 'user/clusters/agent/'
      - category_title: Management project
        category_url: 'user/clusters/management_project.html'
      - category_title: Pod logs
        category_url: 'user/project/clusters/kubernetes_pod_logs.html'
      - category_title: Runbooks
        category_url: 'user/project/clusters/runbooks/'
      - category_title: Serverless
        category_url: 'user/project/clusters/serverless/'
        docs:
          - doc_title: Deploying AWS Lambda functions
            doc_url: 'user/project/clusters/serverless/aws.html'
      - category_title: Securing your deployed applications
        category_url: 'user/project/clusters/securing.html'

  - section_title: Groups
    section_url: 'user/group/'
    section_categories:
      - category_title: Contribution analytics
        category_url: 'user/group/contribution_analytics/'
        ee_only: true
        ee_tier: 'GitLab Starter, GitLab.com Bronze, and higher tiers'
      - category_title: Custom group-level project templates
        category_url: 'user/group/custom_project_templates.html'
        ee_only: true
        ee_tier: 'GitLab Premium, GitLab.com Silver, and higher tiers'
      - category_title: Epics
        category_url: 'user/group/epics/'
        ee_only: true
        ee_tier: 'GitLab Premium, GitLab.com Silver, and higher tiers'
        docs:
          - doc_title: Manage epics
            doc_url: 'user/group/epics/manage_epics.html'
            ee_only: true
            ee_tier: 'GitLab Premium, GitLab.com Silver, and higher tiers'
      - category_title: Dependency proxy
        category_url: 'user/group/dependency_proxy/'
        ee_only: true
        ee_tier: 'GitLab Premium, GitLab.com Silver, and higher tiers'
      - category_title: Group Import/Export
        category_url: 'user/group/settings/import_export.html'
      - category_title: Insights
        category_url: 'user/group/insights/'
        ee_only: true
        ee_tier: 'GitLab Ultimate and GitLab.com Gold'
      - category_title: Issue analytics
        category_url: 'user/group/issues_analytics/'
        ee_only: true
        ee_tier: 'GitLab Premium, GitLab.com Silver, and higher tiers'
      - category_title: Iterations
        category_url: 'user/group/iterations/'
        ee_only: true
        ee_tier: 'GitLab Starter, GitLab.com Bronze, and higher tiers'
      - category_title: Public access
        category_url: 'public_access/public_access.html'
      - category_title: SAML SSO for GitLab.com groups
        category_url: 'user/group/saml_sso/'
        ee_only: true
        ee_tier: 'GitLab.com Silver and higher tiers. Not available in self-managed instances.'
        docs:
          - doc_title: SCIM provisioning
            doc_url: 'user/group/saml_sso/scim_setup.html'
            ee_only: true
            ee_tier: 'GitLab.com Silver and higher tiers. Not available in self-managed instances.'
      - category_title: Subgroups
        category_url: 'user/group/subgroups/'
      - category_title: Roadmaps
        category_url: 'user/group/roadmap/'
        ee_only: true
        ee_tier: 'GitLab Premium and GitLab.com Silver'

  - section_title: Projects
    section_url: 'user/project/'
    section_categories:
      - category_title: Application security
        category_url: 'user/application_security/'
        ee_only: true
        ee_tier: 'GitLab Ultimate and GitLab.com Gold'
        docs:
          - doc_title: Security Configuration
            doc_url: 'user/application_security/configuration/'
            ee_only: true
            ee_tier: 'GitLab Ultimate and GitLab.com Gold'
          - doc_title: Container Scanning
            doc_url: 'user/application_security/container_scanning/'
            ee_only: true
            ee_tier: 'GitLab Ultimate and GitLab.com Gold'
          - doc_title: Threat Monitoring
            doc_url: 'user/application_security/threat_monitoring/'
            ee_only: true
            ee_tier: 'GitLab Ultimate and GitLab.com Gold'
          - doc_title: Dependency Scanning
            doc_url: 'user/application_security/dependency_scanning/'
            ee_only: true
            ee_tier: 'GitLab Ultimate and GitLab.com Gold'
          - doc_title: Dependency List
            doc_url: 'user/application_security/dependency_list/'
            ee_only: true
            ee_tier: 'GitLab Ultimate and GitLab.com Gold'
          - doc_title: Static Application Security Testing
            doc_url: 'user/application_security/sast/'
          - doc_title: Secret Detection
            doc_url: 'user/application_security/secret_detection/'
            ee_only: true
            ee_tier: 'GitLab Ultimate and GitLab.com Gold'
          - doc_title: Dynamic Application Security Testing
            doc_url: 'user/application_security/dast/'
            ee_only: true
            ee_tier: 'GitLab Ultimate and GitLab.com Gold'
          - doc_title: API Fuzzing
            doc_url: 'user/application_security/api_fuzzing/'
            ee_only: true
            ee_tier: 'GitLab Ultimate and GitLab.com Gold'
          - doc_title: Coverage Fuzzing
            doc_url: 'user/application_security/coverage_fuzzing/'
            ee_only: true
            ee_tier: 'GitLab Ultimate and GitLab.com Gold'
          - doc_title: Security Dashboard
            doc_url: 'user/application_security/security_dashboard/'
            ee_only: true
            ee_tier: 'GitLab Ultimate and GitLab.com Gold'
          - doc_title: Offline Environments
            doc_url: 'user/application_security/offline_deployments/'
            ee_only: true
            ee_tier: 'GitLab Ultimate and GitLab.com Gold'
          - doc_title: Vulnerability Pages
            doc_url: 'user/application_security/vulnerabilities/'
            ee_only: true
            ee_tier: 'GitLab Ultimate and GitLab.com Gold'
          - doc_title: Security scanner integration
            doc_url: 'development/integrations/secure.html'
            ee_only: true
            ee_tier: 'GitLab Ultimate and GitLab.com Gold'
          - doc_title: Secure and Defend Terminology
            doc_url: 'user/application_security/terminology/'
            ee_only: true
            ee_tier: 'GitLab Ultimate and GitLab.com Gold'
      - category_title: Badges
        category_url: 'user/project/badges.html'
      - category_title: Bulk editing
        category_url: 'user/project/bulk_editing.html'
      - category_title: Code owners
        category_url: 'user/project/code_owners.html'
        ee_only: true
        ee_tier: 'GitLab Starter, GitLab.com Bronze, and higher tiers'
      - category_title: Compliance
        category_url: 'user/compliance/'
        ee_only: true
        ee_tier: 'GitLab Ultimate and GitLab.com Gold'
        docs:
          - doc_title: License Compliance
            doc_url: 'user/compliance/license_compliance/'
            ee_only: true
            ee_tier: 'GitLab Ultimate and GitLab.com Gold'
          - doc_title: Compliance Dashboard
            doc_url: 'user/compliance/compliance_dashboard/'
            ee_only: true
            ee_tier: 'GitLab Ultimate and GitLab.com Gold'
      - category_title: Create a project
        category_url: 'gitlab-basics/create-project.html'
      - category_title: Description templates
        category_url: 'user/project/description_templates.html'
      - category_title: Deploy keys
        category_url: 'user/project/deploy_keys/'
      - category_title: Deploy tokens
        category_url: 'user/project/deploy_tokens/'
      - category_title: File finder
        category_url: 'user/project/repository/file_finder.html'
      - category_title: GitLab Pages
        category_url: 'user/project/pages/'
        docs:
          - doc_title: "Getting started"
            doc_url: 'user/project/pages/#getting-started'
          - doc_title: Default domains, URLs, and baseurls
            doc_url: 'user/project/pages/getting_started_part_one.html'
          - doc_title: CI/CD for GitLab Pages
            doc_url: 'user/project/pages/getting_started/pages_from_scratch.html'
          - doc_title: Custom domains and SSL/TLS certificates
            doc_url: 'user/project/pages/custom_domains_ssl_tls_certification/'
          - doc_title: "Let's Encrypt integration"
            doc_url: 'user/project/pages/custom_domains_ssl_tls_certification/lets_encrypt_integration.html'
          - doc_title: "Access control"
            doc_url: 'user/project/pages/pages_access_control.html'
          - doc_title: Exploring GitLab Pages
            doc_url: 'user/project/pages/introduction.html'
      - category_title: Integrations
        category_url: 'user/project/integrations/'
        docs:
          - doc_title: Overview
            doc_url: 'user/project/integrations/overview.html'
          - doc_title: Bamboo CI
            doc_url: 'user/project/integrations/bamboo.html'
          - doc_title: Bugzilla
            doc_url: 'user/project/integrations/bugzilla.html'
          - doc_title: Custom issue tracker
            doc_url: 'user/project/integrations/custom_issue_tracker.html'
          - doc_title: Discord
            doc_url: 'user/project/integrations/discord_notifications.html'
          - doc_title: Emails on push
            doc_url: 'user/project/integrations/emails_on_push.html'
          - doc_title: GitHub
            doc_url: 'user/project/integrations/github.html'
            ee_only: true
            ee_tier: 'GitLab Premium, GitLab.com Silver, and higher tiers'
          - doc_title: Hangouts Chat
            doc_url: 'user/project/integrations/hangouts_chat.html'
          - doc_title: HipChat
            doc_url: 'user/project/integrations/hipchat.html'
          - doc_title: Irker
            doc_url: 'user/project/integrations/irker.html'
          - doc_title: Jira
            doc_url: 'user/project/integrations/jira.html'
          - doc_title: Jira Development Panel
            doc_url: 'integration/jira_development_panel.html'
            ee_only: true
            ee_tier: 'GitLab Premium, GitLab.com Silver, and higher tiers'
          - doc_title: Mattermost notifications
            doc_url: 'user/project/integrations/mattermost.html'
          - doc_title: Mattermost slash commands
            doc_url: 'user/project/integrations/mattermost_slash_commands.html'
          - doc_title: Microsoft Teams
            doc_url: 'user/project/integrations/microsoft_teams.html'
          - doc_title: Mock CI
            doc_url: 'user/project/integrations/mock_ci.html'
          - doc_title: Prometheus
            doc_url: 'user/project/integrations/prometheus.html'
          - doc_title: Redmine
            doc_url: 'user/project/integrations/redmine.html'
          - doc_title: Slack notifications
            doc_url: 'user/project/integrations/slack.html'
          - doc_title: Slack slash commands
            doc_url: 'user/project/integrations/slack_slash_commands.html'
            ee_only: true
            ee_tier: 'GitLab Core and higher tiers. Not available in GitLab.com'
          - doc_title: Slack application
            doc_url: 'user/project/integrations/gitlab_slack_application.html'
            ee_only: true
            ee_tier: 'GitLab.com only. Not available in GitLab self-managed instances'
          - doc_title: Webhooks
            doc_url: 'user/project/integrations/webhooks.html'
          - doc_title: YouTrack
            doc_url: 'user/project/integrations/youtrack.html'
      - category_title: Insights
        category_url: 'user/project/insights/'
        ee_only: true
        ee_tier: 'GitLab Ultimate and GitLab.com Gold'
      - category_title: Merge Requests
        category_url: 'user/project/merge_requests/'
        docs:
          - doc_title: Allow collaboration
            doc_url: 'user/project/merge_requests/allow_collaboration.html'
          - doc_title: Approvals
            doc_url: 'user/project/merge_requests/merge_request_approvals.html'
            ee_only: true
            ee_tier: 'GitLab Starter, GitLab.com Bronze, and higher tiers'
          - doc_title: Browser performance testing
            doc_url: 'user/project/merge_requests/browser_performance_testing.html'
            ee_only: true
            ee_tier: 'GitLab Premium, GitLab.com Silver, and higher tiers'
          - doc_title: Creating merge requests
            doc_url: 'user/project/merge_requests/creating_merge_requests.html'
          - doc_title: Cherry pick changes
            doc_url: 'user/project/merge_requests/cherry_pick_changes.html'
          - doc_title: Code quality
            doc_url: 'user/project/merge_requests/code_quality.html'
            ee_only: true
            ee_tier: 'GitLab Starter, GitLab.com Bronze, and higher tiers'
          - doc_title: Load performance testing
            doc_url: 'user/project/merge_requests/load_performance_testing.html'
            ee_only: true
            ee_tier: 'GitLab Premium, GitLab.com Silver, and higher tiers'
          - doc_title: Merge request dependencies
            doc_url: 'user/project/merge_requests/merge_request_dependencies.html'
            ee_only: true
            ee_tier: 'GitLab Premium, GitLab.com Silver, and higher tiers'
          - doc_title: Fast forward
            doc_url: 'user/project/merge_requests/fast_forward_merge.html'
          - doc_title: Merge when pipeline succeeds
            doc_url: 'user/project/merge_requests/merge_when_pipeline_succeeds.html'
          - doc_title: Resolve conflicts
            doc_url: 'user/project/merge_requests/resolve_conflicts.html'
          - doc_title: Reverting changes
            doc_url: 'user/project/merge_requests/revert_changes.html'
          - doc_title: Reviewing and managing merge requests
            doc_url: 'user/project/merge_requests/reviewing_and_managing_merge_requests.html'
          - doc_title: Squash and merge
            doc_url: 'user/project/merge_requests/squash_and_merge.html'
          - doc_title: Versions
            doc_url: 'user/project/merge_requests/versions.html'
          - doc_title: Workflows
            doc_url: 'user/project/merge_requests/authorization_for_merge_requests.html'
          - doc_title: Work in progress
            doc_url: 'user/project/merge_requests/work_in_progress_merge_requests.html'
      - category_title: Members
        category_url: 'user/project/members/'
      - category_title: Migrating projects
        category_url: 'user/project/import/'
        docs:
          - doc_title: Bitbucket Cloud
            doc_url: 'user/project/import/bitbucket.html'
          - doc_title: Bitbucket Server
            doc_url: 'user/project/import/bitbucket_server.html'
          - doc_title: ClearCase
            doc_url: 'user/project/import/clearcase.html'
          - doc_title: CVS
            doc_url: 'user/project/import/cvs.html'
          - doc_title: FogBugz
            doc_url: 'user/project/import/fogbugz.html'
          - doc_title: Gemnasium
            doc_url: 'user/project/import/gemnasium.html'
            ee_only: true
            ee_tier: 'GitLab Ultimate and GitLab.com Gold'
          - doc_title: GitHub
            doc_url: 'user/project/import/github.html'
          - doc_title: GitLab.com
            doc_url: 'user/project/import/gitlab_com.html'
          - doc_title: Gitea
            doc_url: 'user/project/import/gitea.html'
          - doc_title: Jira
            doc_url: 'user/project/import/jira.html'
          - doc_title: Perforce Helix
            doc_url: 'user/project/import/perforce.html'
          - doc_title: Phabricator
            doc_url: 'user/project/import/phabricator.html'
          - doc_title: Repo by manifest file
            doc_url: 'user/project/import/manifest.html'
          - doc_title: Repo by URL
            doc_url: 'user/project/import/repo_by_url.html'
          - doc_title: SVN
            doc_url: 'user/project/import/svn.html'
          - doc_title: TFVC
            doc_url: 'user/project/import/tfvc.html'
      - category_title: Push options
        category_url: 'user/project/push_options.html'
      - category_title: Releases
        category_url: 'user/project/releases/'
      - category_title: Repositories
        category_url: 'user/project/repository/'
        docs:
          - doc_title: Branches
            doc_url: 'user/project/repository/branches/'
          - doc_title: Git attributes
            doc_url: 'user/project/git_attributes.html'
          - doc_title: Git LFS
            doc_url: 'administration/lfs/manage_large_binaries_with_git_lfs.html'
          - doc_title: Locked files
            doc_url: 'user/project/file_lock.html'
            ee_only: true
            ee_tier: 'GitLab Premium, GitLab.com Silver, and higher tiers'
          - doc_title: File Blame
            doc_url: 'user/project/repository/git_blame.html'
          - doc_title: File History
            doc_url: 'user/project/repository/git_history.html'
          - doc_title: Mirroring
            doc_url: 'user/project/repository/repository_mirroring.html'
          - doc_title: Protected branches
            doc_url: 'user/project/protected_branches.html'
          - doc_title: Protected tags
            doc_url: 'user/project/protected_tags.html'
          - doc_title: Push rules
            doc_url: 'push_rules/push_rules.html'
            ee_only: true
            ee_tier: 'GitLab Starter, GitLab.com Bronze, and higher tiers'
          - doc_title: Reduce repository size
            doc_url: 'user/project/repository/reducing_the_repo_size_using_git.html'
          - doc_title: Signed Commits
            doc_url: 'user/project/repository/gpg_signed_commits/'
          - doc_title: Syntax highlighting
            doc_url: 'user/project/highlighting.html'
          - doc_title: Web Editor
            doc_url: 'user/project/repository/web_editor.html'
          - doc_title: Web IDE
            doc_url: 'user/project/web_ide/'
      - category_title: Requirements
        category_url: 'user/project/requirements/'
        ee_only: true
        ee_tier: 'GitLab Ultimate and GitLab.com Gold'
      - category_title: Settings
        category_url: 'user/project/settings/'
        docs:
          - doc_title: Project Import/Export
            doc_url: 'user/project/settings/import_export.html'
          - doc_title: Project access tokens
            doc_url: 'user/project/settings/project_access_tokens.html'
            ee_only: true
            ee_tier: 'GitLab Core and higher tiers. Not available in GitLab.com'
      - category_title: Share projects
        category_url: 'user/project/members/share_project_with_groups.html'
      - category_title: Snippets
        category_url: 'user/snippets.html'
      - category_title: Static Site Editor
        category_url: 'user/project/static_site_editor/'
      - category_title: Wikis
        category_url: 'user/project/wiki/'

  - section_title: Issues
    section_url: 'user/project/issues/'
    section_categories:
      - category_title: Confidential issues
        category_url: 'user/project/issues/confidential_issues.html'
      - category_title: Crosslinking issues
        category_url: 'user/project/issues/crosslinking_issues.html'
      - category_title: CSV export
        category_url: 'user/project/issues/csv_export.html'
      - category_title: CSV import
        category_url: 'user/project/issues/csv_import.html'
      - category_title: Design management
        category_url: 'user/project/issues/design_management.html'
      - category_title: Due dates
        category_url: 'user/project/issues/due_dates.html'
      - category_title: Issue Boards
        category_url: 'user/project/issue_board.html'
      - category_title: Issue data and actions
        category_url: 'user/project/issues/issue_data_and_actions.html'
      - category_title: Labels
        category_url: 'user/project/labels.html'
      - category_title: Managing issues
        category_url: 'user/project/issues/managing_issues.html'
      - category_title: Milestones
        category_url: 'user/project/milestones/'
        docs:
          - doc_title: Burndown charts
            doc_url: 'user/project/milestones/burndown_charts.html'
            ee_only: true
            ee_tier: 'GitLab Starter, GitLab.com Bronze, and higher tiers'
      - category_title: Multiple assignees
        category_url: 'user/project/issues/multiple_assignees_for_issues.html'
        ee_only: true
        ee_tier: 'GitLab Starter, GitLab.com Bronze, and higher tiers'
      - category_title: Related issues
        category_url: 'user/project/issues/related_issues.html'
      - category_title: Service Desk
        category_url: 'user/project/service_desk.html'
      - category_title: Sorting and ordering issue lists
        category_url: 'user/project/issues/sorting_issue_lists.html'
      - category_title: Weight
        category_url: 'user/project/issues/issue_weight.html'
        ee_only: true
        ee_tier: 'GitLab Starter, GitLab.com Bronze, and higher tiers'
      - category_title: Zoom meetings in issues
        category_url: 'user/project/issues/associate_zoom_meeting.html'

  - section_title: Operations
    section_url: 'operations/'
    section_categories:
      - category_title: Metrics dashboard
        category_url: 'operations/metrics/'
        docs:
          - doc_title: Set up alerts for metrics
            doc_url: 'operations/metrics/alerts.html'
          - doc_title: Embedding metrics in Markdown
            doc_url: 'operations/metrics/embed.html'
          - doc_title: Embedding metrics in Grafana
            doc_url: 'operations/metrics/embed_grafana.html'
      - category_title: Custom dashboards
        category_url: 'operations/metrics/dashboards/'
        docs:
          - doc_title: Dashboard YAML properties
            doc_url: 'operations/metrics/dashboards/yaml.html'
          - doc_title: Dashboard settings
            doc_url: 'operations/metrics/dashboards/settings.html'
          - doc_title: Panel types for dashboards
            doc_url: 'operations/metrics/dashboards/panel_types.html'
          - doc_title: Using variables
            doc_url: 'operations/metrics/dashboards/variables.html'
          - doc_title: Templating variables for dashboards
            doc_url: 'operations/metrics/dashboards/templating_variables.html'
      - category_title: Metrics library
        category_url: 'user/project/integrations/prometheus_library/'
        docs:
          - doc_title: Monitoring AWS resources
            doc_url: 'user/project/integrations/prometheus_library/cloudwatch.html'
          - doc_title: HAProxy
            doc_url: 'user/project/integrations/prometheus_library/haproxy.html'
          - doc_title: Kubernetes
            doc_url: 'user/project/integrations/prometheus_library/kubernetes.html'
          - doc_title: NGINX
            doc_url: 'user/project/integrations/prometheus_library/nginx.html'
          - doc_title: NGINX Ingress
            doc_url: 'user/project/integrations/prometheus_library/nginx_ingress.html'
          - doc_title: NGINX Ingress VTS
            doc_url: 'user/project/integrations/prometheus_library/nginx_ingress_vts.html'
      - category_title: Error Tracking
        category_url: 'user/project/operations/error_tracking.html'
      - category_title: Tracing
        category_url: 'operations/tracing.html'
        ee_only: true
        ee_tier: 'GitLab Ultimate and GitLab.com Gold'
      - category_title: Incident management
        category_url: 'operations/incident_management/'
        docs:
          - doc_title: Generic alerts endpoint
            doc_url: 'operations/incident_management/generic_alerts.html'
          - doc_title: Create and manage alerts
            doc_url: 'operations/incident_management/alerts.html'
          - doc_title: Alert details
            doc_url: 'operations/incident_management/alert_details.html'
          - doc_title: Create and manage incidents
            doc_url: 'operations/incident_management/incidents.html'
          - doc_title: GitLab Status Page
            doc_url: 'operations/incident_management/status_page.html'
            ee_only: true
            ee_tier: 'GitLab Ultimate and GitLab.com Gold'
      - category_title: Feature Flags
        category_url: 'operations/feature_flags.html'
        ee_only: true
        ee_tier: 'GitLab Premium, GitLab.com Silver, and higher tiers'

  - section_title: CI/CD
    section_url: 'ci/README.html'
    section_categories:
      - category_title: Introduction
        category_url: 'ci/introduction/'
        docs:
          - doc_title: Getting started
            doc_url: 'ci/quick_start/README.html'
          - doc_title: Enable or disable
            doc_url: 'ci/enable_or_disable_ci.html'
          - doc_title: Using SSH keys
            doc_url: 'ci/ssh_keys/README.html'
          - doc_title: Migrating from CircleCI
            doc_url: 'ci/migration/circleci.html'
          - doc_title: Migrating from Jenkins
            doc_url: 'ci/jenkins/'
      - category_title: '.gitlab-ci.yml Reference'
        category_url: 'ci/yaml/README.html'
        docs:
          - doc_title: Includes examples
            doc_url: 'ci/yaml/includes.html'
      - category_title: Auto DevOps
        category_url: 'topics/autodevops/'
        docs:
          - doc_title: Getting started
            doc_url: 'topics/autodevops/quick_start_guide.html'
          - doc_title: Requirements
            doc_url: 'topics/autodevops/requirements.html'
          - doc_title: Customize
            doc_url: 'topics/autodevops/customize.html'
          - doc_title: Stages
            doc_url: 'topics/autodevops/stages.html'
          - doc_title: Upgrading PostgreSQL
            doc_url: 'topics/autodevops/upgrading_postgresql.html'
      - category_title: Caching
        category_url: 'ci/caching/'
      - category_title: ChatOps
        category_url: 'ci/chatops/README.html'
      - category_title: Cloud deployment
        category_url: 'ci/cloud_deployment/'
      - category_title: Docker integration
        category_url: 'ci/docker/README.html'
        docs:
          - doc_title: Docker build
            doc_url: 'ci/docker/using_docker_build.html'
          - doc_title: Docker images
            doc_url: 'ci/docker/using_docker_images.html'
          - doc_title: kaniko
            doc_url: 'ci/docker/using_kaniko.html'
      - category_title: Environment variables
        category_url: 'ci/variables/README.html'
        docs:
          - doc_title: Predefined variables
            doc_url: 'ci/variables/predefined_variables.html'
          - doc_title: Where variables can be used
            doc_url: 'ci/variables/where_variables_can_be_used.html'
          - doc_title: Deprecated variables
            doc_url: 'ci/variables/deprecated_variables.html'
      - category_title: Environments
        category_url: 'ci/environments/'
        docs:
          - doc_title: Protected environments
            doc_url: 'ci/environments/protected_environments.html'
            ee_only: true
            ee_tier: 'GitLab Premium, GitLab.com Silver, and higher tiers'
      - category_title: Examples
        category_url: 'ci/examples/README.html'
        docs:
          - doc_title: Browser performance testing
            doc_url: 'ci/examples/browser_performance.html'
          - doc_title: Clojure
            doc_url: 'ci/examples/test-clojure-application.html'
          - doc_title: Deployment with Dpl
            doc_url: 'ci/examples/deployment/README.html'
          - doc_title: Elixir
            doc_url: 'ci/examples/test_phoenix_app_with_gitlab_ci_cd/'
          - doc_title: End-to-end testing
            doc_url: 'ci/examples/end_to_end_testing_webdriverio/'
          - doc_title: Game development
            doc_url: 'ci/examples/devops_and_game_dev_with_gitlab_ci_cd/'
          - doc_title: Java with Spring Boot
            doc_url: 'ci/examples/deploy_spring_boot_to_cloud_foundry/'
          - doc_title: Java with Maven
            doc_url: 'ci/examples/artifactory_and_gitlab/'
          - doc_title: PHP with PHPunit and atoum
            doc_url: 'ci/examples/php.html'
          - doc_title: PHP with NPM and SCP
            doc_url: 'ci/examples/deployment/composer-npm-deploy.html'
          - doc_title: PHP with Laravel and Envoy
            doc_url: 'ci/examples/laravel_with_gitlab_and_envoy/'
          - doc_title: Python on Heroku
            doc_url: 'ci/examples/test-and-deploy-python-application-to-heroku.html'
          - doc_title: Ruby on Heroku
            doc_url: 'ci/examples/test-and-deploy-ruby-application-to-heroku.html'
          - doc_title: Scala on Heroku
            doc_url: 'ci/examples/test-scala-application.html'
      - category_title: External repositories
        category_url: 'ci/ci_cd_for_external_repos/'
        ee_only: true
        ee_tier: 'GitLab Premium, GitLab.com Silver, and higher tiers'
        docs:
          - doc_title: Bitbucket Cloud
            doc_url: 'ci/ci_cd_for_external_repos/bitbucket_integration.html'
            ee_only: true
            ee_tier: 'GitLab Premium, GitLab.com Silver, and higher tiers'
          - doc_title: GitHub
            doc_url: 'ci/ci_cd_for_external_repos/github_integration.html'
            ee_only: true
            ee_tier: 'GitLab Premium, GitLab.com Silver, and higher tiers'
      - category_title: Incremental rollouts
        category_url: 'ci/environments/incremental_rollouts.html'
      - category_title: Interactive web terminals
        category_url: 'ci/interactive_web_terminal/'
      - category_title: Large repositories
        category_url: 'ci/large_repositories/'
      - category_title: Metrics reports
        category_url: 'ci/metrics_reports.html'
        ee_only: true
        ee_tier: 'GitLab Premium, GitLab.com Silver, and higher tiers'
      - category_title: Pipelines
        category_url: 'ci/pipelines/'
        docs:
          - doc_title: Architecture
            doc_url: 'ci/pipelines/pipeline_architectures.html'
          - doc_title: Pipeline efficiency
            doc_url: 'ci/pipelines/pipeline_efficiency.html'
          - doc_title: Directed acyclic graph
            doc_url: 'ci/directed_acyclic_graph/'
          - doc_title: Multi-project pipelines
            doc_url: 'ci/multi_project_pipelines.html'
          - doc_title: Parent-child pipelines
            doc_url: 'ci/parent_child_pipelines.html'
          - doc_title: Pipelines for merge requests
            doc_url: 'ci/merge_request_pipelines/'
          - doc_title: Pipelines for merged results
            doc_url: 'ci/merge_request_pipelines/pipelines_for_merged_results/'
            ee_only: true
            ee_tier: 'GitLab Premium, GitLab.com Silver, and higher tiers'
          - doc_title: Merge trains
            doc_url: 'ci/merge_request_pipelines/pipelines_for_merged_results/merge_trains/'
            ee_only: true
            ee_tier: 'GitLab Premium, GitLab.com Silver, and higher tiers'
          - doc_title: Job artifacts
            doc_url: 'ci/pipelines/job_artifacts.html'
          - doc_title: Schedules
            doc_url: 'ci/pipelines/schedules.html'
          - doc_title: Settings
            doc_url: 'ci/pipelines/settings.html'
          - doc_title: Triggering pipelines
            doc_url: 'ci/triggers/README.html'
      - category_title: Review Apps
        category_url: 'ci/review_apps/'
      - category_title: Runners
        category_url: 'ci/runners/README.html'
      - category_title: Services examples
        category_url: 'ci/services/README.html'
        docs:
          - doc_title: MySQL
            doc_url: 'ci/services/mysql.html'
          - doc_title: PostgreSQL
            doc_url: 'ci/services/postgres.html'
          - doc_title: Redis
            doc_url: 'ci/services/redis.html'
      - category_title: Troubleshooting
        category_url: 'ci/troubleshooting.html'
        docs:
          - doc_title: CI Lint
            doc_url: 'ci/lint.html'

  - section_title: Packages & Registries
    section_url: 'user/packages/'
    section_categories:
      - category_title: Package Registry
        category_url: 'user/packages/package_registry/'
      - category_title: Container Registry
        category_url: 'user/packages/container_registry/'
      - category_title: Dependency Proxy
        category_url: 'user/packages/dependency_proxy/'
        ee_only: true
        ee_tier: 'GitLab Premium, GitLab.com Silver, and higher tiers'
      - category_title: Composer Repository
        category_url: 'user/packages/composer_repository/'
      - category_title: Conan Repository
        category_url: 'user/packages/conan_repository/'
      - category_title: Go Proxy
        category_url: 'user/packages/go_proxy/'
      - category_title: Maven Repository
        category_url: 'user/packages/maven_repository/'
      - category_title: NPM Registry
        category_url: 'user/packages/npm_registry/'
      - category_title: NuGet Repository
        category_url: 'user/packages/nuget_repository/'
      - category_title: PyPI Repository
        category_url: 'user/packages/pypi_repository/'

  - section_title: API
    section_url: 'api/README.html'
    section_categories:
      - category_title: Resources
        category_url: 'api/api_resources.html'
        docs:
          - doc_title: .gitignore (templates)
            doc_url: 'api/templates/gitignores.html'
          - doc_title: .gitlab-ci.yml (templates)
            doc_url: 'api/templates/gitlab_ci_ymls.html'
          - doc_title: Access requests
            doc_url: 'api/access_requests.html'
          - doc_title: Appearance (application)
            doc_url: 'api/appearance.html'
          - doc_title: Applications
            doc_url: 'api/applications.html'
          - doc_title: Audit events
            doc_url: 'api/audit_events.html'
          - doc_title: Avatar
            doc_url: 'api/avatar.html'
          - doc_title: Award emoji
            doc_url: 'api/award_emoji.html'
          - doc_title: Badges (project)
            doc_url: 'api/project_badges.html'
          - doc_title: Badges (group)
            doc_url: 'api/group_badges.html'
          - doc_title: Branches
            doc_url: 'api/branches.html'
          - doc_title: Broadcast messages
            doc_url: 'api/broadcast_messages.html'
          - doc_title: Clusters (project)
            doc_url: 'api/project_clusters.html'
          - doc_title: Clusters (group)
            doc_url: 'api/group_clusters.html'
          - doc_title: Clusters (instance)
            doc_url: 'api/instance_clusters.html'
          - doc_title: Commits
            doc_url: 'api/commits.html'
          - doc_title: Container Registry
            doc_url: 'api/container_registry.html'
          - doc_title: Custom attributes
            doc_url: 'api/custom_attributes.html'
          - doc_title: Dashboard annotations
            doc_url: 'api/metrics_dashboard_annotations.html'
          - doc_title: Dependencies
            doc_url: 'api/dependencies.html'
            ee_only: true
            ee_tier: 'GitLab Ultimate and GitLab.com Gold'
          - doc_title: Deploy keys
            doc_url: 'api/deploy_keys.html'
          - doc_title: Deployments
            doc_url: 'api/deployments.html'
          - doc_title: Discussions
            doc_url: 'api/discussions.html'
          - doc_title: Dockerfile (templates)
            doc_url: 'api/templates/dockerfiles.html'
          - doc_title: Environments
            doc_url: 'api/environments.html'
          - doc_title: Epics
            doc_url: 'api/epics.html'
            ee_only: true
            ee_tier: 'GitLab Premium, GitLab.com Silver, and higher tiers'
          - doc_title: Events
            doc_url: 'api/events.html'
          - doc_title: Features flags
            doc_url: 'api/feature_flags.html'
          - doc_title: Feature flag user lists
            doc_url: 'api/feature_flag_user_lists.html'
          - doc_title: Freeze periods
            doc_url: 'api/freeze_periods.html'
          - doc_title: Geo nodes
            doc_url: 'api/geo_nodes.html'
            ee_only: true
            ee_tier: 'GitLab Premium and higher tiers. Not available in GitLab.com'
          - doc_title: Group activity analytics
            doc_url: 'api/group_activity_analytics.html'
          - doc_title: Groups
            doc_url: 'api/groups.html'
          - doc_title: Import
            doc_url: 'api/import.html'
          - doc_title: Issue boards (project)
            doc_url: 'api/boards.html'
          - doc_title: Issue boards (group)
            doc_url: 'api/group_boards.html'
          - doc_title: Issues
            doc_url: 'api/issues.html'
          - doc_title: Issues (epic)
            doc_url: 'api/epic_issues.html'
            ee_only: true
            ee_tier: 'GitLab Premium, GitLab.com Silver, and higher tiers'
          - doc_title: Issues statistics
            doc_url: 'api/issues_statistics.html'
          - doc_title: Jobs
            doc_url: 'api/jobs.html'
          - doc_title: Job artifacts
            doc_url: 'api/job_artifacts.html'
          - doc_title: Keys
            doc_url: 'api/keys.html'
          - doc_title: Labels (project)
            doc_url: 'api/labels.html'
          - doc_title: Labels (group)
            doc_url: 'api/group_labels.html'
          - doc_title: License
            doc_url: 'api/license.html'
          - doc_title: Licenses (templates)
            doc_url: 'api/templates/licenses.html'
          - doc_title: Links (issue)
            doc_url: 'api/issue_links.html'
            ee_only: true
            ee_tier: 'GitLab Starter, GitLab.com Bronze, and higher tiers'
          - doc_title: Links (epic)
            doc_url: 'api/epic_links.html'
            ee_only: true
            ee_tier: 'GitLab Ultimate and GitLab.com Gold'
          - doc_title: Managed licenses
            doc_url: 'api/managed_licenses.html'
            ee_only: true
            ee_tier: 'GitLab Ultimate and GitLab.com Gold'
          - doc_title: Markdown
            doc_url: 'api/markdown.html'
          - doc_title: Members
            doc_url: 'api/members.html'
          - doc_title: Merge request approvals
            doc_url: 'api/merge_request_approvals.html'
            ee_only: true
            ee_tier: 'GitLab Starter, GitLab.com Bronze, and higher tiers'
          - doc_title: Merge requests
            doc_url: 'api/merge_requests.html'
          - doc_title: Merge trains
            doc_url: 'api/merge_trains.html'
            ee_only: true
            ee_tier: 'GitLab Premium, GitLab.com Silver, and higher tiers'
          - doc_title: Milestones (project)
            doc_url: 'api/milestones.html'
          - doc_title: Milestones (group)
            doc_url: 'api/group_milestones.html'
          - doc_title: Namespaces
            doc_url: 'api/namespaces.html'
          - doc_title: Notes (comments)
            doc_url: 'api/notes.html'
          - doc_title: Notification settings
            doc_url: 'api/notification_settings.html'
          - doc_title: Packages
            doc_url: 'api/packages.html'
          - doc_title: Pages domains
            doc_url: 'api/pages_domains.html'
          - doc_title: Personal access tokens
            doc_url: 'api/personal_access_tokens.html'
            ee_only: true
            ee_tier: 'GitLab Ultimate, GitLab.com Gold tier'
          - doc_title: Pipelines schedules
            doc_url: 'api/pipeline_schedules.html'
          - doc_title: Pipeline triggers
            doc_url: 'api/pipeline_triggers.html'
          - doc_title: Pipelines
            doc_url: 'api/pipelines.html'
          - doc_title: Project aliases
            doc_url: 'api/project_aliases.html'
            ee_only: true
            ee_tier: 'GitLab Premium and higher tiers. Not available in GitLab.com'
          - doc_title: Project import/export
            doc_url: 'api/project_import_export.html'
          - doc_title: Project repository storage moves
            doc_url: 'api/project_repository_storage_moves.html'
            ee_only: true
            ee_tier: 'GitLab Core and higher tiers. Not available in GitLab.com'
          - doc_title: Project statistics
            doc_url: 'api/project_statistics.html'
          - doc_title: Project templates
            doc_url: 'api/project_templates.html'
          - doc_title: Projects
            doc_url: 'api/projects.html'
          - doc_title: Protected branches
            doc_url: 'api/protected_branches.html'
          - doc_title: Protected tags
            doc_url: 'api/protected_tags.html'
          - doc_title: Releases
            doc_url: 'api/releases/'
          - doc_title: Release links
            doc_url: 'api/releases/links.html'
          - doc_title: Repositories
            doc_url: 'api/repositories.html'
          - doc_title: Repository files
            doc_url: 'api/repository_files.html'
          - doc_title: Repository submodules
            doc_url: 'api/repository_submodules.html'
          - doc_title: Resource iteration events
            doc_url: 'api/resource_iteration_events.html'
            ee_only: true
            ee_tier: 'GitLab Starter, GitLab.com Bronze, and higher tiers'
          - doc_title: Resource label events
            doc_url: 'api/resource_label_events.html'
          - doc_title: Resource milestone events
            doc_url: 'api/resource_milestone_events.html'
          - doc_title: Resource state events
            doc_url: 'api/resource_state_events.html'
          - doc_title: Resource weight events
            doc_url: 'api/resource_weight_events.html'
            ee_only: true
            ee_tier: 'GitLab Starter, GitLab.com Bronze, and higher tiers'
          - doc_title: Runners
            doc_url: 'api/runners.html'
          - doc_title: SCIM
            doc_url: 'api/scim.html'
            ee_only: true
            ee_tier: 'GitLab.com Silver and higher tiers. Not available in GitLab self-managed instances'
          - doc_title: Search
            doc_url: 'api/search.html'
          - doc_title: Services
            doc_url: 'api/services.html'
          - doc_title: Settings (application)
            doc_url: 'api/settings.html'
          - doc_title: Sidekiq metrics
            doc_url: 'api/sidekiq_metrics.html'
            ee_only: true
            ee_tier: 'GitLab Core and higher tiers. Not available in GitLab.com'
          - doc_title: Sidekiq queues
            doc_url: 'api/admin_sidekiq_queues.html'
            ee_only: true
            ee_tier: 'GitLab Core and higher tiers. Not available in GitLab.com'
          - doc_title: Snippets
            doc_url: 'api/snippets.html'
          - doc_title: Snippets (project)
            doc_url: 'api/project_snippets.html'
          - doc_title: Statistics (application)
            doc_url: 'api/statistics.html'
          - doc_title: Suggestions
            doc_url: 'api/suggestions.html'
          - doc_title: System hooks
            doc_url: 'api/system_hooks.html'
          - doc_title: Tags
            doc_url: 'api/tags.html'
          - doc_title: To-Do lists
            doc_url: 'api/todos.html'
          - doc_title: Users
            doc_url: 'api/users.html'
          - doc_title: Variables (project)
            doc_url: 'api/project_level_variables.html'
          - doc_title: Variables (group)
            doc_url: 'api/group_level_variables.html'
          - doc_title: Version
            doc_url: 'api/version.html'
          - doc_title: Vulnerabilities
            doc_url: 'api/vulnerabilities.html'
            ee_only: true
            ee_tier: 'GitLab Ultimate and GitLab.com Gold'
          - doc_title: Vulnerability Findings
            doc_url: 'api/vulnerability_findings.html'
            ee_only: true
            ee_tier: 'GitLab Ultimate and GitLab.com Gold'
          - doc_title: Wikis
            doc_url: 'api/wikis.html'
      - category_title: GraphQL
        category_url: 'api/graphql/'
        docs:
          - doc_title: Getting started
            doc_url: 'api/graphql/getting_started.html'
          - doc_title: GraphQL reference
            doc_url: 'api/graphql/reference/'
          - doc_title: Create audit report (example)
            doc_url: 'api/graphql/audit_report.html'
          - doc_title: Identify issue boards (example)
            doc_url: 'api/graphql/sample_issue_boards.html'
      - category_title: v3 to v4
        category_url: 'api/v3_to_v4.html'
      - category_title: Lint .gitlab-ci.yml
        category_url: 'api/lint.html'
      - category_title: GitLab as an OAuth2 provider
        category_url: 'api/oauth2.html'

  - section_title: User
    section_url: 'user/'
    section_categories:
      - category_title: Abuse reports
        category_url: 'user/abuse_reports.html'
      - category_title: Account
        category_url: 'user/profile/'
        docs:
          - doc_title: Active sessions
            doc_url: 'user/profile/active_sessions.html'
          - doc_title: Delete account
            doc_url: 'user/profile/account/delete_account.html'
          - doc_title: Permissions
            doc_url: 'user/permissions.html'
          - doc_title: Personal access tokens
            doc_url: 'user/profile/personal_access_tokens.html'
          - doc_title: Profile preferences
            doc_url: 'user/profile/preferences.html'
          - doc_title: "Two-factor authentication"
            doc_url: 'user/profile/account/two_factor_authentication.html'
      - category_title: Discussions
        category_url: 'user/discussions/'
      - category_title: General
        category_url: 'topics/authentication/'
        docs:
          - doc_title: Authentication
            doc_url: 'topics/authentication/'
          - doc_title: SSH
            doc_url: 'ssh/README.html'
          - doc_title: Integrations
            doc_url: 'integration/README.html'
      - category_title: Git
        category_url: 'topics/git/'
        docs:
          - doc_title: Partial clone
            doc_url: 'topics/git/partial_clone.html'
          - doc_title: Troubleshooting Git
            doc_url: 'topics/git/troubleshooting_git.html'
          - doc_title: Useful commands
            doc_url: 'topics/git/useful_git_commands.html'
      - category_title: GitLab.com settings
        category_url: 'user/gitlab_com/'
      - category_title: Keyboard shortcuts
        category_url: 'user/shortcuts.html'
      - category_title: Markdown
        category_url: 'user/markdown.html'
        docs:
          - doc_title: AsciiDoc
            doc_url: 'user/asciidoc.html'
      - category_title: Notification emails
        category_url: 'user/profile/notifications.html'
      - category_title: Quick actions
        category_url: 'user/project/quick_actions.html'
        docs:
          - doc_title: Autocomplete characters
            doc_url: 'user/project/autocomplete_characters.html'
      - category_title: Reserved project and group names
        category_url: 'user/reserved_names.html'
      - category_title: Search
        category_url: 'user/search/'
        docs:
          - doc_title: Advanced global search
            doc_url: 'user/search/advanced_global_search.html'
            ee_only: true
            ee_tier: 'GitLab Starter and higher tiers. Not available in GitLab.com'
          - doc_title: Advanced search syntax
            doc_url: 'user/search/advanced_search_syntax.html'
            ee_only: true
            ee_tier: 'GitLab Starter and higher tiers. Not available in GitLab.com'
      - category_title: Time tracking
        category_url: 'user/project/time_tracking.html'
      - category_title: To-Do lists
        category_url: 'user/todos.html'

  - section_title: Administrator
    section_url: 'administration/'
    ee_only: true
    ee_tier: 'GitLab Core and higher tiers. Not available in GitLab.com'
    section_categories:
      - category_title: Reference Architectures
        category_url: 'administration/reference_architectures/'
        docs:
          - doc_title: Up to 1,000 users
            doc_url: 'administration/reference_architectures/1k_users.html'
          - doc_title: Up to 2,000 users
            doc_url: 'administration/reference_architectures/2k_users.html'
          - doc_title: Up to 3,000 users
            doc_url: 'administration/reference_architectures/3k_users.html'
          - doc_title: Up to 5,000 users
            doc_url: 'administration/reference_architectures/5k_users.html'
          - doc_title: Up to 10,000 users
            doc_url: 'administration/reference_architectures/10k_users.html'
          - doc_title: Up to 25,000 users
            doc_url: 'administration/reference_architectures/25k_users.html'
          - doc_title: Up to 50,000 users
            doc_url: 'administration/reference_architectures/50k_users.html'
          - doc_title: Troubleshooting
            doc_url: 'administration/reference_architectures/troubleshooting.html'
      - category_title: Configure
        category_url: 'user/admin_area/settings/'
        docs:
          - doc_title: Appearance
            doc_url: 'customization/'
          - doc_title: CI/CD
            doc_url: 'user/admin_area/settings/continuous_integration.html'
          - doc_title: Custom instance-level project templates
            doc_url: 'user/admin_area/custom_project_templates.html'
            ee_only: true
            ee_tier: 'GitLab Premium and higher tiers. Not available in GitLab.com'
          - doc_title: Diff limits
            doc_url: 'user/admin_area/diff_limits.html'
          - doc_title: Email
            doc_url: 'user/admin_area/settings/email.html'
          - doc_title: Feature flags
            doc_url: 'administration/feature_flags.html'
          - doc_title: Geo nodes
            doc_url: 'user/admin_area/geo_nodes.html'
            ee_only: true
            ee_tier: 'GitLab Premium and higher tiers. Not available in GitLab.com'
          - doc_title: Git LFS administration
            doc_url: 'administration/lfs/lfs_administration.html'
          - doc_title: GitLab Pages
            doc_url: 'administration/pages/'
          - doc_title: Health Check
            doc_url: 'user/admin_area/monitoring/health_check.html'
          - doc_title: Job logs
            doc_url: 'administration/job_logs.html'
          - doc_title: Labels
            doc_url: 'user/admin_area/labels.html'
          - doc_title: Log system
            doc_url: 'administration/logs.html'
          - doc_title: OAuth applications
            doc_url: 'administration/auth/README.html'
          - doc_title: PlantUML Integration
            doc_url: 'administration/integration/plantuml.html'
          - doc_title: Repository checks
            doc_url: 'administration/repository_checks.html'
          - doc_title: Repository storage paths
            doc_url: 'administration/repository_storage_paths.html'
          - doc_title: Repository storage types
            doc_url: 'administration/repository_storage_types.html'
          - doc_title: Repository size
            doc_url: 'user/admin_area/settings/account_and_limit_settings.html'
            ee_only: true
            ee_tier: 'GitLab Starter, GitLab.com Bronze, and higher tiers'
          - doc_title: Service templates
            doc_url: 'user/project/integrations/services_templates.html'
          - doc_title: System Hooks
            doc_url: 'system_hooks/system_hooks.html'
          - doc_title: Timezone
            doc_url: 'administration/timezone.html'
          - doc_title: Uploads
            doc_url: 'administration/uploads.html'
      - category_title: Abuse reports
        category_url: 'user/admin_area/abuse_reports.html'
      - category_title: Activate and deactivate users
        category_url: 'user/admin_area/activating_deactivating_users.html'
      - category_title: Analytics
        category_url: 'user/admin_area/analytics/index.html'
      - category_title: Audit events
        category_url: 'administration/audit_events.html'
        ee_only: true
        ee_tier: 'GitLab Starter, GitLab.com Bronze, and higher tiers'
      - category_title: Block and unblock users
        category_url: 'user/admin_area/blocking_unblocking_users.html'
      - category_title: Broadcast messages
        category_url: 'user/admin_area/broadcast_messages.html'
      - category_title: Elasticsearch
        category_url: 'integration/elasticsearch.html'
        ee_only: true
        ee_tier: 'GitLab Starter and higher tiers. Not available in GitLab.com'
      - category_title: Consul
        category_url: 'administration/consul.html'
        ee_only: true
        ee_tier: 'GitLab Premium and higher tiers. Not available in GitLab.com'
      - category_title: PostgreSQL
        category_url: 'administration/postgresql/'
        docs:
          - doc_title: PgBouncer
            doc_url: 'administration/postgresql/pgbouncer.html'
            ee_only: true
            ee_tier: 'GitLab Premium and higher tiers. Not available in GitLab.com'
          - doc_title: Replication and failover
            doc_url: 'administration/postgresql/replication_and_failover.html'
            ee_only: true
            ee_tier: 'GitLab Premium and higher tiers. Not available in GitLab.com'
          - doc_title: External database service
            doc_url: 'administration/postgresql/external.html'
      - category_title: Load balancer
        category_url: 'administration/load_balancer.html'
      - category_title: NFS
        category_url: 'administration/nfs.html'
      - category_title: Redis
        category_url: 'administration/redis/'
      - category_title: Sidekiq
        category_url: 'administration/sidekiq.html'
      - category_title: Gitaly
        category_url: 'administration/gitaly/'
        docs:
          - doc_title: Gitaly Cluster
            doc_url: 'administration/gitaly/praefect.html'
            ee_only: true
            ee_tier: 'GitLab Core and higher tiers. However, technical support is limited to GitLab Premium and Ultimate customers only. Not available in GitLab.com'
          - doc_title: Gitaly reference
            doc_url: 'administration/gitaly/reference.html'
      - category_title: Metrics
        category_url: 'administration/monitoring/'
        docs:
          - doc_title: Prometheus
            doc_url: 'administration/monitoring/prometheus/'
          - doc_title: Performance bar
            doc_url: 'administration/monitoring/performance/performance_bar.html'
          - doc_title: Usage statistics
            doc_url: 'user/admin_area/settings/usage_statistics.html'
      - category_title: Object storage
        category_url: 'administration/object_storage.html'
      - category_title: Operations
        category_url: 'administration/operations/'
        docs:
          - doc_title: Clean up Redis sessions
            doc_url: 'administration/operations/cleaning_up_redis_sessions.html'
          - doc_title: Fast SSH key lookup
            doc_url: 'administration/operations/fast_ssh_key_lookup.html'
          - doc_title: Filesystem benchmarking
            doc_url: 'administration/operations/filesystem_benchmarking.html'
          - doc_title: Move repositories
            doc_url: 'administration/operations/moving_repositories.html'
          - doc_title: Multiple Sidekiq processes
            doc_url: 'administration/operations/extra_sidekiq_processes.html'
          - doc_title: Sidekiq MemoryKiller
            doc_url: 'administration/operations/sidekiq_memory_killer.html'
          - doc_title: Switch to Puma
            doc_url: 'administration/operations/puma.html'
          - doc_title: Unicorn
            doc_url: 'administration/operations/unicorn.html'
          - doc_title: Use SSH certificates
            doc_url: 'administration/operations/ssh_certificates.html'
      - category_title: Packages
        category_url: 'administration/packages/'
        docs:
          - doc_title: Container Registry
            doc_url: 'administration/packages/container_registry.html'
      - category_title: Geo
        category_url: 'administration/geo/'
        ee_only: true
        ee_tier: 'GitLab Premium and higher tiers. Not available in GitLab.com'
        docs:
          - doc_title: Setting up Geo
            doc_url: 'administration/geo/setup/'
          - doc_title: Database replication
            doc_url: 'administration/geo/replication/database.html'
          - doc_title: External PostgreSQL instances
            doc_url: 'administration/geo/replication/external_database.html'
          - doc_title: Configuration
            doc_url: 'administration/geo/replication/configuration.html'
          - doc_title: Using a Geo server
            doc_url: 'administration/geo/replication/using_a_geo_server.html'
          - doc_title: Updating Geo nodes
            doc_url: 'administration/geo/replication/updating_the_geo_nodes.html'
          - doc_title: Using object storage
            doc_url: 'administration/geo/replication/object_storage.html'
          - doc_title: Using Docker Registry
            doc_url: 'administration/geo/replication/docker_registry.html'
          - doc_title: Geo for multiple servers
            doc_url: 'administration/geo/replication/multiple_servers.html'
          - doc_title: Geo security review
            doc_url: 'administration/geo/replication/security_review.html'
          - doc_title: Location-aware Git remote URLs
            doc_url: 'administration/geo/replication/location_aware_git_url.html'
          - doc_title: Tuning Geo
            doc_url: 'administration/geo/replication/tuning.html'
          - doc_title: Removing a node
            doc_url: 'administration/geo/replication/remove_geo_node.html'
          - doc_title: Supported data types
            doc_url: 'administration/geo/replication/datatypes.html'
          - doc_title: Frequently asked questions
            doc_url: 'administration/geo/replication/faq.html'
          - doc_title: Troubleshooting
            doc_url: 'administration/geo/replication/troubleshooting.html'
          - doc_title: Validation tests
            doc_url: 'administration/geo/replication/geo_validation_tests.html'
      - category_title: Disaster recovery (Geo)
        category_url: 'administration/geo/disaster_recovery/'
        ee_only: true
        ee_tier: 'GitLab Premium and higher tiers. Not available in GitLab.com'
        docs:
          - doc_title: Planned failover
            doc_url: 'administration/geo/disaster_recovery/planned_failover.html'
          - doc_title: Bring primary back
            doc_url: 'administration/geo/disaster_recovery/bring_primary_back.html'
          - doc_title: Automatic background verification
            doc_url: 'administration/geo/disaster_recovery/background_verification.html'
      - category_title: Rake tasks
        category_url: 'raketasks/README.html'
        docs:
          - doc_title: Backup and restore
            doc_url: 'raketasks/backup_restore.html'
          - doc_title: Clean up
            doc_url: 'raketasks/cleanup.html'
          - doc_title: Enable namespaces
            doc_url: 'raketasks/features.html'
          - doc_title: General maintenance
            doc_url: 'administration/raketasks/maintenance.html'
          - doc_title: Geo tasks
            doc_url: 'administration/raketasks/geo.html'
            ee_only: true
            ee_tier: 'GitLab Premium and higher tiers. Not available in GitLab.com'
          - doc_title: GitHub import
            doc_url: 'administration/raketasks/github_import.html'
          - doc_title: Import repositories
            doc_url: 'raketasks/import.html'
          - doc_title: Integrity check
            doc_url: 'administration/raketasks/check.html'
          - doc_title: LDAP maintenance
            doc_url: 'administration/raketasks/ldap.html'
          - doc_title: List repositories
            doc_url: 'raketasks/list_repos.html'
          - doc_title: Praefect tasks
            doc_url: 'administration/raketasks/praefect.html'
          - doc_title: Project import and export
            doc_url: 'administration/raketasks/project_import_export.html'
          - doc_title: Repository storage
            doc_url: 'administration/raketasks/storage.html'
          - doc_title: Sample Prometheus data
            doc_url: 'raketasks/generate_sample_prometheus_data.html'
          - doc_title: Uploads migration
            doc_url: 'administration/raketasks/uploads/migrate.html'
          - doc_title: Uploads sanitization
            doc_url: 'administration/raketasks/uploads/sanitize.html'
          - doc_title: User management
            doc_url: 'raketasks/user_management.html'
          - doc_title: Webhooks administration
            doc_url: 'raketasks/web_hooks.html'
          - doc_title: X509 signatures
            doc_url: 'raketasks/x509_signatures.html'
      - category_title: Server hooks
        category_url: 'administration/server_hooks.html'
      - category_title: Static objects external storage
        category_url: 'administration/static_objects_external_storage.html'
      - category_title: Update
        category_url: 'update/README.html'
        docs:
          - doc_title: Releases and maintenance
            doc_url: 'policy/maintenance.html'

  - section_title: Security
    section_url: 'security/README.html'
    section_categories:
      - category_title: Password storage
        category_url: 'security/password_storage.html'
      - category_title: Custom password length limits
        category_url: 'security/password_length_limits.html'
      - category_title: Limits on SSH keys
        category_url: 'security/ssh_keys_restrictions.html'
      - category_title: Rate limits
        category_url: 'security/rate_limits.html'
      - category_title: Webhooks
        category_url: 'security/webhooks.html'
      - category_title: Information exclusivity
        category_url: 'security/information_exclusivity.html'
      - category_title: Reset user password
        category_url: 'security/reset_user_password.html'
      - category_title: Unlock a user
        category_url: 'security/unlock_user.html'
      - category_title: User file uploads
        category_url: 'security/user_file_uploads.html'
      - category_title: Manage the CRIME vulnerability
        category_url: 'security/crime_vulnerability.html'
      - category_title: Enforce two-factor authentication (2FA)
        category_url: 'security/two_factor_authentication.html'
      - category_title: User email confirmation
        category_url: 'security/user_email_confirmation.html'
      - category_title: Security of running jobs
        category_url: 'https://docs.gitlab.com/runner/security/'
        external_url: true
      - category_title: Proxying assets
        category_url: 'security/asset_proxy.html'
      - category_title: CI/CD environment variables
        category_url: 'security/cicd_environment_variables.html'

  - section_title: Contributor
    section_url: 'development/README.html'
    section_categories:
      - category_title: Contribute to GitLab
        category_url: 'development/contributing/'
        docs:
          - doc_title: Community roles
            doc_url: 'development/contributing/community_roles.html'
          - doc_title: Design and UI
            doc_url: 'development/contributing/design.html'
          - doc_title: GitLab Development Kit
            doc_url: 'https://gitlab.com/gitlab-org/gitlab-development-kit/blob/master/README.md'
            external_url: true
          - doc_title: Issues workflow
            doc_url: 'development/contributing/issue_workflow.html'
          - doc_title: Merge request workflow
            doc_url: 'development/contributing/merge_request_workflow.html'
          - doc_title: Code review guidelines
            doc_url: 'development/code_review.html'
          - doc_title: Style guides
            doc_url: 'development/contributing/style_guides.html'
      - category_title: Architecture
        category_url: 'development/architecture.html'
      - category_title: CI/CD development
        category_url: 'development/cicd/'
        docs:
          - doc_title: Development guide for CI/CD templates
            doc_url: 'development/cicd/templates.html'
      - category_title: Danger bot
        category_url: 'development/dangerbot.html'
      - category_title: Database guides
        category_url: 'development/database/'
        docs:
          - doc_title: Database review guidelines
            doc_url: 'development/database_review.html'
          - doc_title: SQL guidelines
            doc_url: 'development/database_review.html'
          - doc_title: Migrations style guide
            doc_url: 'development/migration_style_guide.html'
          - doc_title: What requires downtime
            doc_url: 'development/what_requires_downtime.html'
          - doc_title: Understanding EXPLAIN plans
            doc_url: 'development/understanding_explain_plans.html'
      - category_title: Development Rake tasks
        category_url: 'development/rake_tasks.html'
        docs:
          - doc_title: Mass insert Rails models
            doc_url: 'development/mass_insert.html'
      - category_title: Documentation
        category_url: 'development/documentation/'
        docs:
          - doc_title: Style guide
            doc_url: 'development/documentation/styleguide.html'
          - doc_title: Documentation structure and template
            doc_url: 'development/documentation/structure.html'
          - doc_title: Process
            doc_url: 'development/documentation/workflow.html'
          - doc_title: Site architecture
            doc_url: 'development/documentation/site_architecture/'
          - doc_title: Global navigation
            doc_url: 'development/documentation/site_architecture/global_nav.html'
          - doc_title: Deployment process
            doc_url: 'development/documentation/site_architecture/deployment_process.html'
          - doc_title: Monthly release process
            doc_url: 'development/documentation/site_architecture/release_process.html'
      - category_title: Telemetry guide
        category_url: 'development/telemetry/'
        docs:
          - doc_title: Event dictionary
            doc_url: 'development/telemetry/event_dictionary.html'
          - doc_title: Usage Ping guide
            doc_url: 'development/telemetry/usage_ping.html'
          - doc_title: Snowplow guide
            doc_url: 'development/telemetry/snowplow.html'
      - category_title: Experiment guide
        category_url: 'development/experiment_guide/'
      - category_title: Feature flags for GitLab development
        category_url: 'development/feature_flags/'
        docs:
          - doc_title: Using feature flags
            doc_url: 'development/feature_flags/process.html'
          - doc_title: Developing with feature flags
            doc_url: 'development/feature_flags/development.html'
          - doc_title: Controlling feature flags
            doc_url: 'development/feature_flags/controls.html'
          - doc_title: Documenting feature flags
            doc_url: 'development/documentation/feature_flags.html'
      - category_title: Frontend development guidelines
        category_url: 'development/fe_guide/'
        docs:
          - doc_title: Accessibility
            doc_url: 'development/fe_guide/accessibility.html'
          - doc_title: Ajax
            doc_url: 'development/fe_guide/droplab/plugins/ajax.html'
          - doc_title: Architecture
            doc_url: 'development/fe_guide/architecture.html'
          - doc_title: Axios
            doc_url: 'development/fe_guide/axios.html'
          - doc_title: Design patterns
            doc_url: 'development/fe_guide/design_patterns.html'
          - doc_title: Development process
            doc_url: 'development/fe_guide/development_process.html'
          - doc_title: Droplab
            doc_url: 'development/fe_guide/droplab/droplab.html'
          - doc_title: Emojis
            doc_url: 'development/fe_guide/emojis.html'
          - doc_title: Filter
            doc_url: 'development/fe_guide/droplab/plugins/filter.html'
          - doc_title: Frontend FAQ
            doc_url: 'development/fe_guide/frontend_faq.html'
          - doc_title: GraphQL
            doc_url: 'development/fe_guide/graphql.html'
          - doc_title: Icons and SVG illustrations
            doc_url: 'development/fe_guide/icons.html'
          - doc_title: InputSetter
            doc_url: 'development/fe_guide/droplab/plugins/input_setter.html'
          - doc_title: Performance
            doc_url: 'development/fe_guide/performance.html'
          - doc_title: Principles
            doc_url: 'development/fe_guide/principles.html'
          - doc_title: Security
            doc_url: 'development/fe_guide/security.html'
          - doc_title: Testing
            doc_url: 'development/fe_guide/testing.html'
          - doc_title: Tooling
            doc_url: 'development/fe_guide/tooling.html'
          - doc_title: Vuex
            doc_url: 'development/fe_guide/vuex.html'
          - doc_title: Vue
            doc_url: 'development/fe_guide/vue.html'
      - category_title: GitLab Pages (development)
        category_url: 'https://gitlab.com/gitlab-org/gitlab-development-kit/blob/master/doc/howto/pages.md'
        external_url: true
      - category_title: Geo (development)
        category_url: 'development/geo.html'
        docs:
          - doc_title: Geo framework
            doc_url: 'development/geo/framework.html'
      - category_title: Gitaly development guide
        category_url: 'development/gitaly.html'
      - category_title: GitLab Design System
        category_url: 'https://design.gitlab.com'
        external_url: true
      - category_title: GitLab development style guides
        category_url: 'development/fe_guide/style/'
        docs:
          - doc_title: API style guide
            doc_url: 'development/api_styleguide.html'
          - doc_title: Go standards and style guidelines
            doc_url: 'development/go_guide/'
          - doc_title: GraphQL API style guide
            doc_url: 'development/api_graphql_styleguide.html'
          - doc_title: Guidelines for shell commands
            doc_url: 'development/shell_commands.html'
          - doc_title: HTML style guide
            doc_url: 'development/fe_guide/style/html.html'
          - doc_title: JavaScript style guide
            doc_url: 'development/fe_guide/style/javascript.html'
          - doc_title: Migration style guide
            doc_url: 'development/migration_style_guide.html'
          - doc_title: Newlines style guide
            doc_url: 'development/newlines_styleguide.html'
          - doc_title: Python development guidelines
            doc_url: 'development/python_guide/'
          - doc_title: SCSS style guide
            doc_url: 'development/fe_guide/style/scss.html'
          - doc_title: Shell scripting standards and style guidelines
            doc_url: 'development/shell_scripting_guide/'
          - doc_title: Sidekiq debugging
            doc_url: 'development/sidekiq_debugging.html'
          - doc_title: Sidekiq style guide
            doc_url: 'development/sidekiq_style_guide.html'
          - doc_title: SQL query guidelines
            doc_url: 'development/sql.html'
          - doc_title: Vue style guide
            doc_url: 'development/fe_guide/style/vue.html'
      - category_title: GitLab project pipelines
        category_url: 'development/pipelines.html'
      - category_title: Instrumenting Ruby code
        category_url: 'development/instrumentation.html'
      - category_title: Testing standards and style guidelines
        category_url: 'development/testing_guide/'
        docs:
          - doc_title: Flaky tests
            doc_url: 'development/testing_guide/flaky_tests.html'
          - doc_title: Frontend testing standards and style guidelines
            doc_url: 'development/testing_guide/frontend_testing.html'
          - doc_title: GitLab tests in CI context
            doc_url: 'development/testing_guide/ci.html'
          - doc_title: Review apps
            doc_url: 'development/testing_guide/review_apps.html'
          - doc_title: Smoke tests
            doc_url: 'development/testing_guide/smoke.html'
          - doc_title: Testing best practices
            doc_url: 'development/testing_guide/best_practices.html'
          - doc_title: Testing levels
            doc_url: 'development/testing_guide/testing_levels.html'
          - doc_title: Testing Rails migrations
            doc_url: 'development/testing_guide/testing_migrations_guide.html'
          - doc_title: Testing Rake tasks
            doc_url: 'development/testing_guide/testing_rake_tasks.html'
      - category_title: Testing (end to end)
        category_url: 'development/testing_guide/end_to_end/'
        docs:
          - doc_title: Beginner's guide to writing end-to-end tests
            doc_url: 'development/testing_guide/end_to_end/beginners_guide.html'
          - doc_title: Best practices when writing end-to-end tests
            doc_url: 'development/testing_guide/end_to_end/best_practices.html'
          - doc_title: Dynamic element validation
            doc_url: 'development/testing_guide/end_to_end/dynamic_element_validation.html'
          - doc_title: Flows in GitLab QA
            doc_url: 'development/testing_guide/end_to_end/flows.html'
          - doc_title: Page objects in GitLab QA
            doc_url: 'development/testing_guide/end_to_end/page_objects.html'
          - doc_title: Resource class in GitLab QA
            doc_url: 'development/testing_guide/end_to_end/resources.html'
          - doc_title: Style guide for writing end-to-end tests
            doc_url: 'development/testing_guide/end_to_end/style_guide.html'
          - doc_title: Testing with feature flags
            doc_url: 'development/testing_guide/end_to_end/feature_flags.html'
      - category_title: Translate GitLab
        category_url: 'development/i18n/'
        docs:
          - doc_title: Externalization
            doc_url: 'development/i18n/externalization.html'
          - doc_title: Translation
            doc_url: 'development/i18n/translation.html'
          - doc_title: Proofreading
            doc_url: 'development/i18n/proofreader.html'
          - doc_title: Merging
            doc_url: 'development/i18n/merging_translations.html'
      - category_title: Value Stream Analytics
        category_url: 'development/value_stream_analytics.html'

  - section_title: Customer
    section_url: 'subscriptions/'
    section_categories:
      - category_title: GitLab.com subscriptions
        category_url: 'subscriptions/gitlab_com/'
        ee_only: true
        ee_tier: 'GitLab.com Bronze and higher tiers. Not available in GitLab self-managed instances'
      - category_title: Self-managed subscriptions
        category_url: 'subscriptions/self_managed/'
        ee_only: true
        ee_tier: 'GitLab Starter and higher tiers. Not available in GitLab.com'
      - category_title: Activate Enterprise Edition
        category_url: 'user/admin_area/license.html'
        ee_only: true
        ee_tier: 'GitLab Starter and higher tiers. Not available in GitLab.com'