Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
all: link to the current version of the Kubernetes tutorial not maste…
…r (#92) Code generate a simple redirect from /docs/tutorials/kubernetes to the current version of the tutorial on GitHub. Assume for now that if we have a pre-release that it's a pseudo-version.
- Loading branch information
Showing
10 changed files
with
74 additions
and
6 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
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
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,4 @@ | ||
--- | ||
type: redirect | ||
redirectURL: https://github.com/cuelang/cue/blob/v0.1.0/doc/tutorial/kubernetes/README.md | ||
--- |
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,3 @@ | ||
package tutorials | ||
|
||
//go:generate go run github.com/cuelang/cuelang.org/internal/genkubtutredirect |
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
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
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,59 @@ | ||
// Copyright 2019 CUE Authors | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
// gentipredirect regenerates a simple Hugo markdown file that acts as a redirect | ||
// to the @master module documentation root on pkg.go.dev | ||
package main | ||
|
||
import ( | ||
"bytes" | ||
"fmt" | ||
"io/ioutil" | ||
"log" | ||
"os/exec" | ||
"strings" | ||
|
||
// imported for side effect of module being available in cache | ||
_ "cuelang.org/go/pkg" | ||
"golang.org/x/mod/semver" | ||
) | ||
|
||
func main() { | ||
log.SetFlags(log.Lshortfile) | ||
|
||
var cueVersion bytes.Buffer | ||
cmd := exec.Command("go", "list", "-m", "-f={{.Version}}", "cuelang.org/go") | ||
cmd.Stdout = &cueVersion | ||
if err := cmd.Run(); err != nil { | ||
log.Fatalf("failed to run %v; %v", strings.Join(cmd.Args, " "), err) | ||
} | ||
v := strings.TrimSpace(cueVersion.String()) | ||
if pr := semver.Prerelease(v); pr != "" { | ||
// Assume it's a pseudoversion for now, i.e. | ||
// v0.1.2-0.20200422131516-4d8d1547ac19 where pr is now | ||
// -0.20200422131516-4d8d1547ac19 | ||
parts := strings.Split(pr, "-") | ||
v = parts[2] | ||
} | ||
|
||
content := fmt.Sprintf(`--- | ||
type: redirect | ||
redirectURL: https://github.com/cuelang/cue/blob/%v/doc/tutorial/kubernetes/README.md | ||
---`, v) | ||
|
||
const target = "kubernetes.md" | ||
if err := ioutil.WriteFile(target, []byte(content), 0666); err != nil { | ||
log.Fatalf("failed to write to %v; %v", target, err) | ||
} | ||
} |