Skip to content

Commit

Permalink
Merge pull request #2050 from mkumatag/fix_link
Browse files Browse the repository at this point in the history
🐛  Add https to the webpage
  • Loading branch information
k8s-ci-robot authored Mar 1, 2021
2 parents a90cbd5 + 75ac496 commit 80177d3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pkg/plugins/golang/v2/api.go
Original file line number Diff line number Diff line change
Expand Up @@ -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")
}
}

Expand Down
2 changes: 1 addition & 1 deletion pkg/plugins/golang/v3/api.go
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 80177d3

Please sign in to comment.