-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathredirects.js
96 lines (96 loc) · 2.16 KB
/
redirects.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
module.exports = [
{
from: ["/docs/upgrades"],
to: "/docs/for-ops/sre/upgrades",
},
{
from: ["/"],
to: "/docs/get-started/overview",
},
{
from: ["/docs"],
to: "/docs/get-started/overview",
},
{
from: ["/docs/configuring-apps", "/docs/console/platform-apps"],
to: "/docs/for-ops/console/apps",
},
{
from: ["/docs/configuring-clusters"],
to: "/docs/for-ops/console/settings/cluster",
},
{
from: ["/docs/configuring-services"],
to: "/docs/for-ops/console/services",
},
{
from: ["/docs/configuring-teams"],
to: "/docs/for-ops/console/teams",
},
{
from: ["/docs/console/configuring-secrets"],
to: "/docs/for-devs/console/secrets",
},
{
from: ["/docs/apps/nginx-ingress"],
to: "/docs/apps/ingress-nginx",
},
{
from: ["/docs/installation/chart"],
to: "/docs/get-started/installation/helm",
},
{
from: ["/docs/installation/cli"],
to: "/docs/for-ops/cli/installation",
},
{
from: [
"/docs",
"/docs/installation",
"/docs/installation/optional",
"/docs/get-started/installation",
"/about/architecture",
],
to: "/docs/get-started/installation/overview",
},
{
from: ["/docs/installation/post-install", "/docs/installation/activation"],
to: "/docs/get-started/activation",
},
{
from: ["/docs/installation/prerequisites"],
to: "/docs/get-started/prerequisites",
},
{
from: ["/docs/get-started/known-issues"],
to: "/docs/get-started/installation/known-issues",
},
{
from: ["/docs/for-devs/get-started/overview"],
to: "/docs/for-devs/console/dashboard",
},
{
from: ["/docs/apps/kubeapps"],
to: "/docs/for-devs/console/catalog",
},
{
from: ["/docs/console/team-apps"],
to: "/docs/for-devs/console/apps",
},
{
from: ["/docs/tutorials/build-tag-push"],
to: "/docs/get-started/labs/lab-6",
},
{
from: ["/docs/tutorials/create-keycloak-users/"],
to: "/docs/apps/keycloak",
},
{
from: ["/contributing/get-started", "/community/development"],
to: "/community/welcome",
},
{
from: ["/docs/sre/daily"],
to: "/docs/for-ops/sre/daily",
},
];