diff --git a/changelog/fragments/fix-migration-guide-link.yaml b/changelog/fragments/fix-migration-guide-link.yaml new file mode 100644 index 00000000000..3dd0c06c147 --- /dev/null +++ b/changelog/fragments/fix-migration-guide-link.yaml @@ -0,0 +1,5 @@ +entries: + - description: > + Fix the migration guide link in the deprecation message of `operator-sdk` + kind: "bugfix" + breaking: false diff --git a/cmd/operator-sdk/main.go b/cmd/operator-sdk/main.go index 7ddc379d1c7..9165eafb2a1 100644 --- a/cmd/operator-sdk/main.go +++ b/cmd/operator-sdk/main.go @@ -48,7 +48,7 @@ func main() { "See `operator-sdk init -h` and the following doc on how to scaffold a new project:\n" + "https://v0-19-x.sdk.operatorframework.io/docs/golang/quickstart/\n" + "To migrate existing projects to the new layout see:\n" + - "https://sdk.operatorframework.io/docs/golang/migration/project_migration_guide/\n" + "https://sdk.operatorframework.io/docs/building-operators/golang/project_migration_guide/\n" projutil.PrintDeprecationWarning(depMsg) } if err := cli.RunLegacy(); err != nil {