forked from kubernetes-sigs/kubebuilder
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathinit.go
188 lines (165 loc) · 6.17 KB
/
init.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
/*
Copyright 2022 The Kubernetes Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package scaffolds
import (
"errors"
"fmt"
"strings"
log "github.com/sirupsen/logrus"
"github.com/spf13/afero"
"sigs.k8s.io/kubebuilder/v4/pkg/config"
"sigs.k8s.io/kubebuilder/v4/pkg/machinery"
"sigs.k8s.io/kubebuilder/v4/pkg/plugin"
"sigs.k8s.io/kubebuilder/v4/pkg/plugins"
kustomizecommonv2 "sigs.k8s.io/kubebuilder/v4/pkg/plugins/common/kustomize/v2"
"sigs.k8s.io/kubebuilder/v4/pkg/plugins/golang/v4/scaffolds/internal/templates"
"sigs.k8s.io/kubebuilder/v4/pkg/plugins/golang/v4/scaffolds/internal/templates/cmd"
"sigs.k8s.io/kubebuilder/v4/pkg/plugins/golang/v4/scaffolds/internal/templates/github"
"sigs.k8s.io/kubebuilder/v4/pkg/plugins/golang/v4/scaffolds/internal/templates/hack"
"sigs.k8s.io/kubebuilder/v4/pkg/plugins/golang/v4/scaffolds/internal/templates/test/e2e"
"sigs.k8s.io/kubebuilder/v4/pkg/plugins/golang/v4/scaffolds/internal/templates/test/utils"
)
const (
// GolangciLintVersion is the golangci-lint version to be used in the project
GolangciLintVersion = "v1.63.4"
// ControllerRuntimeVersion is the kubernetes-sigs/controller-runtime version to be used in the project
ControllerRuntimeVersion = "v0.20.4"
// ControllerToolsVersion is the kubernetes-sigs/controller-tools version to be used in the project
ControllerToolsVersion = "v0.17.2"
imageName = "controller:latest"
)
var _ plugins.Scaffolder = &initScaffolder{}
var kustomizeVersion string
type initScaffolder struct {
config config.Config
boilerplatePath string
license string
owner string
commandName string
// fs is the filesystem that will be used by the scaffolder
fs machinery.Filesystem
}
// NewInitScaffolder returns a new Scaffolder for project initialization operations
func NewInitScaffolder(config config.Config, license, owner, commandName string) plugins.Scaffolder {
return &initScaffolder{
config: config,
boilerplatePath: hack.DefaultBoilerplatePath,
license: license,
owner: owner,
commandName: commandName,
}
}
// InjectFS implements cmdutil.Scaffolder
func (s *initScaffolder) InjectFS(fs machinery.Filesystem) {
s.fs = fs
}
// getControllerRuntimeReleaseBranch converts the ControllerRuntime semantic versioning string to a
// release branch string. Example input: "v0.17.0" -> Output: "release-0.17"
func getControllerRuntimeReleaseBranch() string {
v := strings.TrimPrefix(ControllerRuntimeVersion, "v")
tmp := strings.Split(v, ".")
if len(tmp) < 2 {
fmt.Println("Invalid version format. Expected at least major and minor version numbers.")
return ""
}
releaseBranch := fmt.Sprintf("release-%s.%s", tmp[0], tmp[1])
return releaseBranch
}
// Scaffold implements cmdutil.Scaffolder
func (s *initScaffolder) Scaffold() error {
log.Println("Writing scaffold for you to edit...")
// Initialize the machinery.Scaffold that will write the boilerplate file to disk
// The boilerplate file needs to be scaffolded as a separate step as it is going to
// be used by the rest of the files, even those scaffolded in this command call.
scaffold := machinery.NewScaffold(s.fs,
machinery.WithConfig(s.config),
)
if s.license != "none" {
bpFile := &hack.Boilerplate{
License: s.license,
Owner: s.owner,
}
bpFile.Path = s.boilerplatePath
if err := scaffold.Execute(bpFile); err != nil {
return err
}
boilerplate, err := afero.ReadFile(s.fs.FS, s.boilerplatePath)
if err != nil {
if errors.Is(err, afero.ErrFileNotFound) {
log.Warnf("Unable to find %s: %s.\n"+"This file is used to generate the license header in the project.\n"+
"Note that controller-gen will also use this. Therefore, ensure that you "+
"add the license file or configure your project accordingly.",
s.boilerplatePath, err)
boilerplate = []byte("")
} else {
return fmt.Errorf("unable to load boilerplate: %w", err)
}
}
// Initialize the machinery.Scaffold that will write the files to disk
scaffold = machinery.NewScaffold(s.fs,
machinery.WithConfig(s.config),
machinery.WithBoilerplate(string(boilerplate)),
)
} else {
s.boilerplatePath = ""
// Initialize the machinery.Scaffold without boilerplate
scaffold = machinery.NewScaffold(s.fs,
machinery.WithConfig(s.config),
)
}
// If the KustomizeV2 was used to do the scaffold then
// we need to ensure that we use its supported Kustomize Version
// in order to support it
kustomizev2 := kustomizecommonv2.Plugin{}
gov4 := "go.kubebuilder.io/v4"
pluginKeyForKustomizeV2 := plugin.KeyFor(kustomizev2)
for _, pluginKey := range s.config.GetPluginChain() {
if pluginKey == pluginKeyForKustomizeV2 || pluginKey == gov4 {
kustomizeVersion = kustomizecommonv2.KustomizeVersion
break
}
}
return scaffold.Execute(
&cmd.Main{
ControllerRuntimeVersion: ControllerRuntimeVersion,
},
&templates.GoMod{
ControllerRuntimeVersion: ControllerRuntimeVersion,
},
&templates.GitIgnore{},
&templates.Makefile{
Image: imageName,
BoilerplatePath: s.boilerplatePath,
ControllerToolsVersion: ControllerToolsVersion,
KustomizeVersion: kustomizeVersion,
GolangciLintVersion: GolangciLintVersion,
ControllerRuntimeVersion: ControllerRuntimeVersion,
EnvtestVersion: getControllerRuntimeReleaseBranch(),
},
&templates.Dockerfile{},
&templates.DockerIgnore{},
&templates.Readme{CommandName: s.commandName},
&templates.Golangci{},
&e2e.Test{},
&e2e.WebhookTestUpdater{WireWebhook: false},
&e2e.SuiteTest{},
&github.E2eTestCi{},
&github.TestCi{},
&github.LintCi{
GolangciLintVersion: GolangciLintVersion,
},
&utils.Utils{},
&templates.DevContainer{},
&templates.DevContainerPostInstallScript{},
)
}