-
Notifications
You must be signed in to change notification settings - Fork 410
/
Copy pathoptions.go
195 lines (174 loc) · 5.2 KB
/
options.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
189
190
191
192
193
194
195
// Copyright 2018 Google LLC All Rights Reserved.
//
// 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 build
import (
"strings"
v1 "github.com/google/go-containerregistry/pkg/v1"
)
// WithBaseImages is a functional option for overriding the base images
// that are used for different images.
func WithBaseImages(gb GetBase) Option {
return func(gbo *gobuildOpener) error {
gbo.getBase = gb
return nil
}
}
// WithCreationTime is a functional option for overriding the creation
// time given to images.
func WithCreationTime(t v1.Time) Option {
return func(gbo *gobuildOpener) error {
gbo.creationTime = t
return nil
}
}
// WithKoDataCreationTime is a functional option for overriding the creation
// time given to the files in the kodata directory.
func WithKoDataCreationTime(t v1.Time) Option {
return func(gbo *gobuildOpener) error {
gbo.kodataCreationTime = t
return nil
}
}
// WithDisabledOptimizations is a functional option for disabling optimizations
// when compiling.
func WithDisabledOptimizations() Option {
return func(gbo *gobuildOpener) error {
gbo.disableOptimizations = true
return nil
}
}
// WithDisabledSBOM is a functional option for disabling SBOM generation.
func WithDisabledSBOM() Option {
return func(gbo *gobuildOpener) error {
gbo.sbom = nil
return nil
}
}
// WithTrimpath is a functional option that controls whether the `-trimpath`
// flag is added to `go build`.
func WithTrimpath(v bool) Option {
return func(gbo *gobuildOpener) error {
gbo.trimpath = v
return nil
}
}
// WithPreserveMediaType is a functional option that controls whether to
// preserve media types from base images. If false, images that are produced
// will use OCI media types instead.
func WithPreserveMediaType(v bool) Option {
return func(gbo *gobuildOpener) error {
gbo.preserveMediaType = v
return nil
}
}
// WithConfig is a functional option for providing GoReleaser Build influenced
// build settings for importpaths.
//
// Set a fully qualified importpath (e.g. github.com/my-user/my-repo/cmd/app)
// as the mapping key for the respective Config.
func WithConfig(buildConfigs map[string]Config) Option {
return func(gbo *gobuildOpener) error {
gbo.buildConfigs = buildConfigs
return nil
}
}
func WithImageConfig(imageConfigs map[string]*ImageConfig) Option {
return func(gbo *gobuildOpener) error {
gbo.imageConfigs = imageConfigs
return nil
}
}
func WithDefaultImageConfig(defaultImageConfig *ImageConfig) Option {
return func(gbo *gobuildOpener) error {
gbo.defaultImageConfig = defaultImageConfig
return nil
}
}
// WithPlatforms is a functional option for building certain platforms for
// multi-platform base images. To build everything from the base, use "all",
// otherwise use a list of platform specs, i.e.:
//
// platform = <os>[/<arch>[/<variant>]]
// allowed = "all" | []string{platform[,platform]*}
//
// Note: a string of comma-separated platforms (i.e. "platform[,platform]*")
// has been deprecated and only exist for backwards compatibility reasons,
// which will be removed in the future.
func WithPlatforms(platforms ...string) Option {
return func(gbo *gobuildOpener) error {
if len(platforms) == 1 {
// TODO: inform users that they are using deprecated flow?
platforms = strings.Split(platforms[0], ",")
}
gbo.platforms = platforms
return nil
}
}
// WithLabel is a functional option for adding labels to built images.
func WithLabel(k, v string) Option {
return func(gbo *gobuildOpener) error {
if gbo.labels == nil {
gbo.labels = map[string]string{}
}
gbo.labels[k] = v
return nil
}
}
// withBuilder is a functional option for overriding the way go binaries
// are built.
func withBuilder(b builder) Option {
return func(gbo *gobuildOpener) error {
gbo.build = b
return nil
}
}
// WithGoVersionSBOM is a functional option to direct ko to use
// go version -m for SBOM format.
func WithGoVersionSBOM() Option {
return func(gbo *gobuildOpener) error {
gbo.sbom = goversionm
return nil
}
}
// WithSPDX is a functional option to direct ko to use
// SPDX for SBOM format.
func WithSPDX(version string) Option {
return func(gbo *gobuildOpener) error {
gbo.sbom = spdx(version)
return nil
}
}
// WithCycloneDX is a functional option to direct ko to use CycloneDX for SBOM
// format.
func WithCycloneDX() Option {
return func(gbo *gobuildOpener) error {
gbo.sbom = cycloneDX()
return nil
}
}
// withSBOMber is a functional option for overriding the way SBOMs
// are generated.
func withSBOMber(sbom sbomber) Option {
return func(gbo *gobuildOpener) error {
gbo.sbom = sbom
return nil
}
}
// WithJobs limits the number of concurrent builds.
func WithJobs(jobs int) Option {
return func(gbo *gobuildOpener) error {
gbo.jobs = jobs
return nil
}
}