Skip to content

Commit 75ac496

Browse files
committed
Add https to the webpage
1 parent a90cbd5 commit 75ac496

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pkg/plugins/golang/v2/api.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ func (p *createAPISubcommand) Validate() error {
163163
// Check that the provided group can be added to the project
164164
if !p.config.IsMultiGroup() && p.config.ResourcesLength() != 0 && !p.config.HasGroup(p.resource.Group) {
165165
return fmt.Errorf("multiple groups are not allowed by default, to enable multi-group visit %s",
166-
"kubebuilder.io/migration/multi-group.html")
166+
"https://kubebuilder.io/migration/multi-group.html")
167167
}
168168
}
169169

pkg/plugins/golang/v3/api.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ func (p *createAPISubcommand) Validate() error {
186186
// Check that the provided group can be added to the project
187187
if !p.config.IsMultiGroup() && p.config.ResourcesLength() != 0 && !p.config.HasGroup(p.resource.Group) {
188188
return fmt.Errorf("multiple groups are not allowed by default, " +
189-
"to enable multi-group visit kubebuilder.io/migration/multi-group.html")
189+
"to enable multi-group visit https://kubebuilder.io/migration/multi-group.html")
190190
}
191191

192192
// Check CRDVersion against all other CRDVersions in p.config for compatibility.

0 commit comments

Comments
 (0)