|
| 1 | +export const chartOrder = [ |
| 2 | + 'chart/index', |
| 3 | + 'chart/requirements', |
| 4 | + { |
| 5 | + type: 'category' as const, |
| 6 | + label: 'Setting up Kubernetes', |
| 7 | + items: [ |
| 8 | + 'chart/infrastructure/eks-quickstart', |
| 9 | + 'chart/infrastructure/microk8s-quickstart' |
| 10 | + ], |
| 11 | + }, |
| 12 | + { |
| 13 | + type: 'category' as const, |
| 14 | + label: 'Configuring Codacy', |
| 15 | + items: [ |
| 16 | + { |
| 17 | + type: 'category' as const, |
| 18 | + label: 'Integrations', |
| 19 | + items: [ |
| 20 | + 'chart/configuration/integrations/github-cloud', |
| 21 | + 'chart/configuration/integrations/github-enterprise', |
| 22 | + 'chart/configuration/integrations/github-app-create', |
| 23 | + 'chart/configuration/integrations/gitlab-cloud', |
| 24 | + 'chart/configuration/integrations/gitlab-enterprise', |
| 25 | + 'chart/configuration/integrations/bitbucket-cloud', |
| 26 | + 'chart/configuration/integrations/bitbucket-server', |
| 27 | + 'chart/configuration/integrations/email' |
| 28 | + ] |
| 29 | + }, |
| 30 | + 'chart/configuration/caching', |
| 31 | + 'chart/configuration/monitoring', |
| 32 | + 'chart/configuration/logging' |
| 33 | + ], |
| 34 | + }, |
| 35 | + { |
| 36 | + type: 'category' as const, |
| 37 | + label: 'Maintenance and operations', |
| 38 | + items: [ |
| 39 | + 'chart/maintenance/license', |
| 40 | + 'chart/maintenance/upgrade', |
| 41 | + 'chart/maintenance/uninstall', |
| 42 | + 'chart/maintenance/database' |
| 43 | + ], |
| 44 | + }, |
| 45 | + { |
| 46 | + type: 'category' as const, |
| 47 | + label: 'Troubleshooting', |
| 48 | + items: [ |
| 49 | + 'chart/troubleshoot/troubleshoot', |
| 50 | + 'chart/troubleshoot/logs-collect', |
| 51 | + 'chart/troubleshoot/k8s-cheatsheet' |
| 52 | + ], |
| 53 | + }, |
| 54 | +]; |
| 55 | + |
0 commit comments