File tree 2 files changed +25
-5
lines changed 2 files changed +25
-5
lines changed Original file line number Diff line number Diff line change @@ -35,8 +35,9 @@ Vanity URL(s)
35
35
36
36
NOTE: please see k8s.io/k8s.io/configmap-nginx.yaml for ` server ` definitions
37
37
38
- Redirections
39
- ====
38
+ # Redirections
39
+
40
+ ## go.k8s.io Redirects
40
41
- https://go.k8s.io/api-review
41
42
- https://go.k8s.io/bot-commands
42
43
- https://go.k8s.io/calendar
@@ -67,6 +68,23 @@ Redirections
67
68
- https://go.k8s.io/contact/wg-lts
68
69
- https://go.k8s.io/contact/committee-steering
69
70
71
+ ## rel.k8s.io Redirects
72
+
73
+ ### Direct Redirects
74
+ - https://rel.k8s.io/ → https://github.com/kubernetes/kubernetes/releases
75
+ - https://rel.k8s.io/k8s-release-cal → https://calendar.google.com/calendar/embed?src=kipmnllvl17vl9m98jen6ujcrs%40group.calendar.google.com
76
+ - https://rel.k8s.io/k8s-sig-release-videos → https://youtube.com/playlist?list=PL69nYSiGNLP3QKkOsDsO6A0Y1rhgP84iZ&si=Mi095CYuJuz8LjN-
77
+
78
+ ### Version-specific Redirects
79
+
80
+ Example:
81
+ - https://rel.k8s.io/vXYY/releasemtg
82
+ - https://rel.k8s.io/vXYY/retro
83
+ - https://rel.k8s.io/v1XYY/contacts (Note: Access is restricted through Google Authorization)
84
+
85
+ For all release versions, URLs follow this pattern:
86
+ - https://rel.k8s.io/vXYY/{keyword} → https://github.com/kubernetes/sig-release/tree/master/releases/release-X.YY/links.md#{keyword}
87
+
70
88
71
89
NOTE: please see configmap-nginx.yaml for rewrite rules.
72
90
Original file line number Diff line number Diff line change @@ -345,9 +345,11 @@ data:
345
345
server_name releases.k8s.io rel.k8s.io releases.kubernetes.io rel.kubernetes.io;
346
346
listen 80;
347
347
348
- location / {
349
- rewrite ^/$ https://github.com/kubernetes/kubernetes/releases redirect;
350
- rewrite ^/([^/]*)(/.*)?$ https://github.com/kubernetes/kubernetes/tree/$1$2 redirect;
348
+ rewrite ^/$ https://github.com/kubernetes/kubernetes/releases redirect;
349
+ rewrite ^/k8s-release-cal https://calendar.google.com/calendar/embed?src=kipmnllvl17vl9m98jen6ujcrs%40group.calendar.google.com redirect;
350
+ rewrite ^/k8s-sig-release-videos https://youtube.com/playlist?list=PL69nYSiGNLP3QKkOsDsO6A0Y1rhgP84iZ&si=Mi095CYuJuz8LjN- redirect;
351
+ rewrite ^/v([0-9])([0-9]+)/([a-zA-Z]+)$ https://github.com/kubernetes/sig-release/tree/master/releases/release-$1.$2/links.md#$3 redirect;
352
+ rewrite ^/([^/]*)(/.*)?$ https://github.com/kubernetes/kubernetes/tree/$1$2 redirect;
351
353
}
352
354
}
353
355
You can’t perform that action at this time.
0 commit comments