forked from kubernetes/website
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add redirect generator to make Netlify's CDN redirect to the right pl…
…aces. Netlify will redirect with a 301 status to the right places without the need of a custom javascript file. The current redirects.js is not removed so production can keep working as it is for now. Signed-off-by: David Calavera <david.calavera@gmail.com>
- Loading branch information
Showing
4 changed files
with
29 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,3 +24,4 @@ Session.vim | |
tags | ||
|
||
kubernetes.github.io.iml | ||
_redirects |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[build] | ||
command = "make build" | ||
command = "make build generate-redirects" | ||
publish = "_site" | ||
|
||
[context.deploy-preview] | ||
command = "make build-preview" | ||
command = "make build-preview generate-redirects" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
REPO_TMPL = "https://github.com/kubernetes/kubernetes/tree/%s/%s/:splat" | ||
|
||
fixed_redirects = """# 301 redirects (301 is the default status when no other one is provided for each line) | ||
/third_party/swagger-ui /kubernetes/third_party/swagger-ui/ | ||
/resource-quota /docs/admin/resourcequota/ | ||
/horizontal-pod-autoscaler /docs/user-guide/horizontal-pod-autoscaling/ | ||
/docs/user-guide/overview /docs/whatisk8s/ | ||
/docs/roadmap https://github.com/kubernetes/kubernetes/milestones/ | ||
/api-ref https://github.com/kubernetes/kubernetes/milestones/ | ||
""" | ||
|
||
branch_redirects = ["examples" , "cluster", "docs/devel", "docs/design"] | ||
|
||
branch_redirects.each do |name| | ||
dest = REPO_TMPL % [ENV.fetch("HEAD", "master"), name] | ||
rule = "\n/#{name}/* #{dest}" | ||
|
||
fixed_redirects << rule | ||
end | ||
|
||
output = ENV["DEBUG"] ? STDOUT : File.open(ENV.fetch("REDIRECTS_PATH", "_redirects"), "w+") | ||
output.puts fixed_redirects |