-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy pathconfig.go
312 lines (251 loc) · 11.8 KB
/
config.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
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
/*
Copyright 2019 The Knative 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 deployment
import (
"errors"
"fmt"
"strings"
"time"
corev1 "k8s.io/api/core/v1"
"k8s.io/apimachinery/pkg/api/resource"
apimachineryvalidation "k8s.io/apimachinery/pkg/api/validation"
"k8s.io/apimachinery/pkg/labels"
"k8s.io/apimachinery/pkg/util/sets"
"sigs.k8s.io/yaml"
cm "knative.dev/pkg/configmap"
"knative.dev/pkg/ptr"
)
const (
// ConfigName is the name of config map for the deployment.
ConfigName = "config-deployment"
// QueueSidecarImageKey is the config map key for queue sidecar image.
QueueSidecarImageKey = "queue-sidecar-image"
// DeprecatedQueueSidecarImageKey is the config map key for queue sidecar image.
DeprecatedQueueSidecarImageKey = "queueSidecarImage"
// ProgressDeadlineDefault is the default value for the config's
// ProgressDeadlineSeconds. This matches the K8s default value of 600s.
ProgressDeadlineDefault = 600 * time.Second
// ProgressDeadlineKey is the key to configure deployment progress deadline.
ProgressDeadlineKey = "progress-deadline"
// digestResolutionTimeoutKey is the key to configure the digest resolution timeout.
digestResolutionTimeoutKey = "digest-resolution-timeout"
// digestResolutionTimeoutDefault is the default digest resolution timeout.
digestResolutionTimeoutDefault = 10 * time.Second
// registriesSkippingTagResolvingKey is the config map key for the set of registries
// (e.g. ko.local) where tags should not be resolved to digests.
registriesSkippingTagResolvingKey = "registries-skipping-tag-resolving"
// queueSidecar resource request keys.
queueSidecarCPURequestKey = "queue-sidecar-cpu-request"
queueSidecarMemoryRequestKey = "queue-sidecar-memory-request"
queueSidecarEphemeralStorageRequestKey = "queue-sidecar-ephemeral-storage-request"
// queueSidecar resource limit keys.
queueSidecarCPULimitKey = "queue-sidecar-cpu-limit"
queueSidecarMemoryLimitKey = "queue-sidecar-memory-limit"
queueSidecarEphemeralStorageLimitKey = "queue-sidecar-ephemeral-storage-limit"
// qpoptions
queueSidecarTokenAudiencesKey = "queue-sidecar-token-audiences"
queueSidecarRooCAKey = "queue-sidecar-rootca"
defaultAffinityTypeKey = "default-affinity-type"
defaultAffinityTypeValue = PreferSpreadRevisionOverNodes
RuntimeClassNameKey = "runtime-class-name"
)
var (
// QueueSidecarCPURequestDefault is the default request.cpu to set for the
// queue sidecar. It is set at 25m for backwards-compatibility since this was
// the historic default before the field was operator-settable.
QueueSidecarCPURequestDefault = resource.MustParse("25m")
// QueueSidecarCPULimitDefault is the default limit.cpu to set for the
// queue sidecar.
QueueSidecarCPULimitDefault = resource.MustParse("1000m")
// QueueSidecarMemoryRequestDefault is the default request.memory to set for the
// queue sidecar.
QueueSidecarMemoryRequestDefault = resource.MustParse("400Mi")
// QueueSidecarMemoryLimitDefault is the default limit.memory to set for the
// queue sidecar.
QueueSidecarMemoryLimitDefault = resource.MustParse("800Mi")
// QueueSidecarEphemeralStorageRequestDefault is the default request.ephemeral-storage set for the
// queue sidecar.
QueueSidecarEphemeralStorageRequestDefault = resource.MustParse("512Mi")
// QueueSidecarEphemeralStorageLimitDefault is the default limit.ephemeral-storage to set for the
// queue sidecar.
QueueSidecarEphemeralStorageLimitDefault = resource.MustParse("1024Mi")
)
func defaultConfig() *Config {
cfg := &Config{
ProgressDeadline: ProgressDeadlineDefault,
DigestResolutionTimeout: digestResolutionTimeoutDefault,
RegistriesSkippingTagResolving: sets.New("kind.local", "ko.local", "dev.local"),
QueueSidecarCPURequest: &QueueSidecarCPURequestDefault,
DefaultAffinityType: defaultAffinityTypeValue,
}
// The following code is needed for ConfigMap testing.
// defaultConfig must match the example in deployment.yaml which includes: `queue-sidecar-token-audiences: ""`
if cfg.QueueSidecarTokenAudiences == nil {
cfg.QueueSidecarTokenAudiences = sets.New("")
}
return cfg
}
func (d Config) PodRuntimeClassName(lbs map[string]string) *string {
runtimeClassName := ""
specificity := -1
for k, v := range d.RuntimeClassNames {
if !v.Matches(lbs) || v.specificity() < specificity {
continue
}
if v.specificity() > specificity || strings.Compare(k, runtimeClassName) < 0 {
runtimeClassName = k
specificity = v.specificity()
}
}
if runtimeClassName == "" {
return nil
}
return ptr.String(runtimeClassName)
}
type RuntimeClassNameLabelSelector struct {
Selector map[string]string `json:"selector,omitempty"`
}
func (s *RuntimeClassNameLabelSelector) specificity() int {
if s.Selector == nil {
return 0
}
return len(s.Selector)
}
func (s *RuntimeClassNameLabelSelector) Matches(labels map[string]string) bool {
if s.Selector == nil {
return true
}
for label, expectedValue := range s.Selector {
value, ok := labels[label]
if !ok || expectedValue != value {
return false
}
}
return true
}
// NewConfigFromMap creates a DeploymentConfig from the supplied Map.
func NewConfigFromMap(configMap map[string]string) (*Config, error) {
nc := defaultConfig()
var runtimeClassNames string
if err := cm.Parse(configMap,
// Legacy keys for backwards compatibility
cm.AsString(DeprecatedQueueSidecarImageKey, &nc.QueueSidecarImage),
cm.AsDuration("progressDeadline", &nc.ProgressDeadline),
cm.AsDuration("digestResolutionTimeout", &nc.DigestResolutionTimeout),
cm.AsStringSet("registriesSkippingTagResolving", &nc.RegistriesSkippingTagResolving),
cm.AsQuantity("queueSidecarCPURequest", &nc.QueueSidecarCPURequest),
cm.AsQuantity("queueSidecarMemoryRequest", &nc.QueueSidecarMemoryRequest),
cm.AsQuantity("queueSidecarEphemeralStorageRequest", &nc.QueueSidecarEphemeralStorageRequest),
cm.AsQuantity("queueSidecarCPULimit", &nc.QueueSidecarCPULimit),
cm.AsQuantity("queueSidecarMemoryLimit", &nc.QueueSidecarMemoryLimit),
cm.AsQuantity("queueSidecarEphemeralStorageLimit", &nc.QueueSidecarEphemeralStorageLimit),
cm.AsString(QueueSidecarImageKey, &nc.QueueSidecarImage),
cm.AsDuration(ProgressDeadlineKey, &nc.ProgressDeadline),
cm.AsDuration(digestResolutionTimeoutKey, &nc.DigestResolutionTimeout),
cm.AsStringSet(registriesSkippingTagResolvingKey, &nc.RegistriesSkippingTagResolving),
cm.AsQuantity(queueSidecarCPURequestKey, &nc.QueueSidecarCPURequest),
cm.AsQuantity(queueSidecarMemoryRequestKey, &nc.QueueSidecarMemoryRequest),
cm.AsQuantity(queueSidecarEphemeralStorageRequestKey, &nc.QueueSidecarEphemeralStorageRequest),
cm.AsQuantity(queueSidecarCPULimitKey, &nc.QueueSidecarCPULimit),
cm.AsQuantity(queueSidecarMemoryLimitKey, &nc.QueueSidecarMemoryLimit),
cm.AsQuantity(queueSidecarEphemeralStorageLimitKey, &nc.QueueSidecarEphemeralStorageLimit),
cm.AsStringSet(queueSidecarTokenAudiencesKey, &nc.QueueSidecarTokenAudiences),
cm.AsString(queueSidecarRooCAKey, &nc.QueueSidecarRootCA),
cm.AsString(RuntimeClassNameKey, &runtimeClassNames),
); err != nil {
return nil, err
}
if nc.QueueSidecarImage == "" {
return nil, errors.New("queue-sidecar-image cannot be empty or unset")
}
if nc.ProgressDeadline <= 0 {
return nil, fmt.Errorf("progress-deadline cannot be a non-positive duration, was %v", nc.ProgressDeadline)
}
if nc.ProgressDeadline.Truncate(time.Second) != nc.ProgressDeadline {
return nil, fmt.Errorf("progress-deadline must be rounded to a whole second, was: %v", nc.ProgressDeadline)
}
if nc.DigestResolutionTimeout <= 0 {
return nil, fmt.Errorf("digest-resolution-timeout cannot be a non-positive duration, was %v", nc.DigestResolutionTimeout)
}
if affinity, ok := configMap[defaultAffinityTypeKey]; ok {
switch opt := AffinityType(affinity); opt {
case None, PreferSpreadRevisionOverNodes:
nc.DefaultAffinityType = opt
default:
return nil, fmt.Errorf("unsupported %s value: %q", defaultAffinityTypeKey, affinity)
}
}
if err := yaml.Unmarshal([]byte(runtimeClassNames), &nc.RuntimeClassNames); err != nil {
return nil, fmt.Errorf("%v cannot be parsed, please check the format: %w", RuntimeClassNameKey, err)
}
for class, rcn := range nc.RuntimeClassNames {
if warns := apimachineryvalidation.NameIsDNSSubdomain(class, false); len(warns) > 0 {
return nil, fmt.Errorf("%v %v selector not valid DNSSubdomain: %v", RuntimeClassNameKey, class, warns)
}
if len(rcn.Selector) > 0 {
if _, err := labels.ValidatedSelectorFromSet(rcn.Selector); err != nil {
return nil, fmt.Errorf("%v %v selector invalid: %w", RuntimeClassNameKey, class, err)
}
}
}
return nc, nil
}
// NewConfigFromConfigMap creates a DeploymentConfig from the supplied configMap.
func NewConfigFromConfigMap(config *corev1.ConfigMap) (*Config, error) {
return NewConfigFromMap(config.Data)
}
// AffinityType specifies which affinity requirements will be automatically applied to the PodSpec of all Knative services.
type AffinityType string
const (
// None is used for deactivating affinity configuration for user workloads.
None AffinityType = "none"
// PreferSpreadRevisionOverNodes is used to set pod anti-affinity requirements for user workloads.
PreferSpreadRevisionOverNodes AffinityType = "prefer-spread-revision-over-nodes"
)
// Config includes the configurations for the controller.
type Config struct {
// QueueSidecarImage is the name of the image used for the queue sidecar
// injected into the revision pod.
QueueSidecarImage string
// Repositories for which tag to digest resolving should be skipped.
RegistriesSkippingTagResolving sets.Set[string]
// DigestResolutionTimeout is the maximum time allowed for image digest resolution.
DigestResolutionTimeout time.Duration
// ProgressDeadline is the time in seconds we wait for the deployment to
// be ready before considering it failed.
ProgressDeadline time.Duration
// QueueSidecarCPURequest is the CPU Request to set for the queue proxy sidecar container.
QueueSidecarCPURequest *resource.Quantity
// QueueSidecarCPULimit is the CPU Limit to set for the queue proxy sidecar container.
QueueSidecarCPULimit *resource.Quantity
// QueueSidecarMemoryRequest is the Memory Request to set for the queue proxy sidecar container.
QueueSidecarMemoryRequest *resource.Quantity
// QueueSidecarMemoryLimit is the Memory Limit to set for the queue proxy sidecar container.
QueueSidecarMemoryLimit *resource.Quantity
// QueueSidecarEphemeralStorageRequest is the Ephemeral Storage Request to
// set for the queue proxy sidecar container.
QueueSidecarEphemeralStorageRequest *resource.Quantity
// QueueSidecarEphemeralStorageLimit is the Ephemeral Storage Limit to set
// for the queue proxy sidecar container.
QueueSidecarEphemeralStorageLimit *resource.Quantity
// QueueSidecarTokenAudiences is a set of strings defining required tokens - each string represent the token audience
// used by the queue proxy sidecar container to create tokens for qpoptions.
QueueSidecarTokenAudiences sets.Set[string]
// QueueSidecarRootCA is a root certificate to be trusted by the queue proxy sidecar qpoptions.
QueueSidecarRootCA string
// DefaultAffinityType is a string that controls what affinity rules will be automatically
// applied to the PodSpec of all Knative services.
DefaultAffinityType AffinityType
// RuntimeClassNames specifies which runtime the Pod will use
RuntimeClassNames map[string]RuntimeClassNameLabelSelector
}