File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed
docs/book/src/cronjob-tutorial/testdata/project/api/v1
testdata/project-v2/api/v1 Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -503,8 +503,8 @@ import (
503
503
var (
504
504
GroupVersion = schema.GroupVersion {Group: " mygroup.test.k8s.io" , Version : " v1" }
505
505
506
- // schemeBuilder is used to add go types to the GroupVersionKind scheme
507
- schemeBuilder = &scheme.Builder {GroupVersion: GroupVersion }
506
+ // SchemeBuilder is used to add go types to the GroupVersionKind scheme
507
+ SchemeBuilder = &scheme.Builder {GroupVersion: GroupVersion }
508
508
509
509
// AddToScheme adds the types in this group-version to the given scheme.
510
510
AddToScheme = SchemeBuilder .AddToScheme
Original file line number Diff line number Diff line change 42
42
// GroupVersion is group version used to register these objects
43
43
GroupVersion = schema.GroupVersion {Group : "batch.tutorial.kubebuilder.io" , Version : "v1" }
44
44
45
- // schemeBuilder is used to add go types to the GroupVersionKind scheme
45
+ // SchemeBuilder is used to add go types to the GroupVersionKind scheme
46
46
SchemeBuilder = & scheme.Builder {GroupVersion : GroupVersion }
47
47
48
48
// AddToScheme adds the types in this group-version to the given scheme.
Original file line number Diff line number Diff line change 63
63
// GroupVersion is group version used to register these objects
64
64
GroupVersion = schema.GroupVersion{Group: "{{ .Resource.Group }}.{{ .Domain }}", Version: "{{ .Resource.Version }}"}
65
65
66
- // schemeBuilder is used to add go types to the GroupVersionKind scheme
66
+ // SchemeBuilder is used to add go types to the GroupVersionKind scheme
67
67
SchemeBuilder = &scheme.Builder{GroupVersion: GroupVersion}
68
68
69
69
// AddToScheme adds the types in this group-version to the given scheme.
Original file line number Diff line number Diff line change 28
28
// GroupVersion is group version used to register these objects
29
29
GroupVersion = schema.GroupVersion {Group : "crew.testproject.org" , Version : "v1" }
30
30
31
- // schemeBuilder is used to add go types to the GroupVersionKind scheme
31
+ // SchemeBuilder is used to add go types to the GroupVersionKind scheme
32
32
SchemeBuilder = & scheme.Builder {GroupVersion : GroupVersion }
33
33
34
34
// AddToScheme adds the types in this group-version to the given scheme.
You can’t perform that action at this time.
0 commit comments