File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -62,3 +62,11 @@ func (p Plugin) GetCreateWebhookSubcommand() plugin.CreateWebhookSubcommand {
62
62
63
63
// GetEditSubcommand will return the subcommand which is responsible for editing the scaffold of the project
64
64
func (p Plugin ) GetEditSubcommand () plugin.EditSubcommand { return & p .editSubcommand }
65
+
66
+ func (p Plugin ) DeprecationWarning () string {
67
+ return "This version is deprecated." +
68
+ "The `go/v3` cannot scaffold projects using kustomize versions v4x+" +
69
+ " and cannot fully support Kubernetes 1.25+." +
70
+ "It is recommended to upgrade your project to the latest versions available (go/v4)." +
71
+ "Please, check the migration guide to learn how to upgrade your project"
72
+ }
Original file line number Diff line number Diff line change @@ -63,11 +63,3 @@ func (p Plugin) GetCreateWebhookSubcommand() plugin.CreateWebhookSubcommand {
63
63
64
64
// GetEditSubcommand will return the subcommand which is responsible for editing the scaffold of the project
65
65
func (p Plugin ) GetEditSubcommand () plugin.EditSubcommand { return & p .editSubcommand }
66
-
67
- func (p Plugin ) DeprecationWarning () string {
68
- return "This version is deprecated." +
69
- "The `go/v3` cannot scaffold projects using kustomize versions v4x+" +
70
- " and cannot fully support Kubernetes 1.25+." +
71
- "It is recommended to upgrade your project to the latest versions available (go/v4)." +
72
- "Please, check the migration guide to learn how to upgrade your project"
73
- }
You can’t perform that action at this time.
0 commit comments