From 75ac4965cffc127704af5e78a33744b79edca88b Mon Sep 17 00:00:00 2001 From: Manjunath A Kumatagi Date: Mon, 1 Mar 2021 21:20:14 +0530 Subject: [PATCH] Add https to the webpage --- pkg/plugins/golang/v2/api.go | 2 +- pkg/plugins/golang/v3/api.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/plugins/golang/v2/api.go b/pkg/plugins/golang/v2/api.go index bdca3497512..d8395eaf014 100644 --- a/pkg/plugins/golang/v2/api.go +++ b/pkg/plugins/golang/v2/api.go @@ -163,7 +163,7 @@ func (p *createAPISubcommand) Validate() error { // Check that the provided group can be added to the project if !p.config.IsMultiGroup() && p.config.ResourcesLength() != 0 && !p.config.HasGroup(p.resource.Group) { return fmt.Errorf("multiple groups are not allowed by default, to enable multi-group visit %s", - "kubebuilder.io/migration/multi-group.html") + "https://kubebuilder.io/migration/multi-group.html") } } diff --git a/pkg/plugins/golang/v3/api.go b/pkg/plugins/golang/v3/api.go index 8abcbd9d1b1..34ca58df4cc 100644 --- a/pkg/plugins/golang/v3/api.go +++ b/pkg/plugins/golang/v3/api.go @@ -186,7 +186,7 @@ func (p *createAPISubcommand) Validate() error { // Check that the provided group can be added to the project if !p.config.IsMultiGroup() && p.config.ResourcesLength() != 0 && !p.config.HasGroup(p.resource.Group) { return fmt.Errorf("multiple groups are not allowed by default, " + - "to enable multi-group visit kubebuilder.io/migration/multi-group.html") + "to enable multi-group visit https://kubebuilder.io/migration/multi-group.html") } // Check CRDVersion against all other CRDVersions in p.config for compatibility.