diff --git a/cmd/operator-sdk/main.go b/cmd/operator-sdk/main.go index 6fa697c89a..76b4ee6a4e 100644 --- a/cmd/operator-sdk/main.go +++ b/cmd/operator-sdk/main.go @@ -46,9 +46,9 @@ func main() { if operatorType == projutil.OperatorTypeGo { depMsg := "Operator SDK has a new CLI and project layout that is aligned with Kubebuilder.\n" + "See `operator-sdk init -h` and the following doc on how to scaffold a new project:\n" + - "https://sdk.operatorframework.io/docs/golang/new/quickstart/\n" + + "https://sdk.operatorframework.io/docs/golang/quickstart/\n" + "To migrate existing projects to the new layout see:\n" + - "https://sdk.operatorframework.io/docs/golang/new/migration/project_migration_guide/\n" + "https://sdk.operatorframework.io/docs/golang/migration/project_migration_guide/\n" projutil.PrintDeprecationWarning(depMsg) } if err := cli.RunLegacy(); err != nil { diff --git a/internal/util/projutil/project_util.go b/internal/util/projutil/project_util.go index 66897d69e9..418320e3ae 100644 --- a/internal/util/projutil/project_util.go +++ b/internal/util/projutil/project_util.go @@ -315,7 +315,7 @@ func CheckGoModules() error { } if !goModOn { return fmt.Errorf(`using go modules requires GO111MODULE="on", "auto", or unset.` + - ` More info: https://sdk.operatorframework.io/docs/golang/new/quickstart/#a-note-on-dependency-management`) + ` More info: https://sdk.operatorframework.io/docs/golang/quickstart/#a-note-on-dependency-management`) } return nil } diff --git a/proposals/leader-for-life.md b/proposals/leader-for-life.md index 1e6b7871c3..4ec7ef2cfb 100644 --- a/proposals/leader-for-life.md +++ b/proposals/leader-for-life.md @@ -4,7 +4,7 @@ Implementation Owner: > Status: **implemented** > -> See [leader election documentation](https://sdk.operatorframework.io/docs/golang/new/advanced-topics/#leader-election). +> See [leader election documentation](https://sdk.operatorframework.io/docs/golang/advanced-topics/#leader-election). - [Background](#background) - [Goals](#goals) diff --git a/website/content/en/build/_index.html b/website/content/en/build/_index.html index 5e3b198a65..c83869c3e2 100644 --- a/website/content/en/build/_index.html +++ b/website/content/en/build/_index.html @@ -56,7 +56,7 @@