-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
deploy.go
390 lines (340 loc) · 12.3 KB
/
deploy.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
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
/*
Copyright 2018 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 resources
import (
"fmt"
"sort"
"strconv"
"strings"
"time"
netheader "knative.dev/networking/pkg/http/header"
"knative.dev/pkg/kmeta"
"knative.dev/pkg/ptr"
"knative.dev/serving/pkg/apis/autoscaling"
"knative.dev/serving/pkg/apis/serving"
v1 "knative.dev/serving/pkg/apis/serving/v1"
"knative.dev/serving/pkg/networking"
"knative.dev/serving/pkg/queue"
"knative.dev/serving/pkg/reconciler/revision/config"
"knative.dev/serving/pkg/reconciler/revision/resources/names"
appsv1 "k8s.io/api/apps/v1"
corev1 "k8s.io/api/core/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/util/intstr"
apiconfig "knative.dev/serving/pkg/apis/config"
)
const certVolumeName = "server-certs"
var (
varLogVolume = corev1.Volume{
Name: "knative-var-log",
VolumeSource: corev1.VolumeSource{
EmptyDir: &corev1.EmptyDirVolumeSource{},
},
}
varLogVolumeMount = corev1.VolumeMount{
Name: varLogVolume.Name,
MountPath: "/var/log",
SubPathExpr: "$(K_INTERNAL_POD_NAMESPACE)_$(K_INTERNAL_POD_NAME)_",
}
//nolint:gosec // Volume, not hardcoded credentials
varTokenVolume = corev1.Volume{
Name: "knative-token-volume",
VolumeSource: corev1.VolumeSource{
Projected: &corev1.ProjectedVolumeSource{
Sources: []corev1.VolumeProjection{},
},
},
}
varCertVolumeMount = corev1.VolumeMount{
MountPath: queue.CertDirectory,
Name: certVolumeName,
ReadOnly: true,
}
//nolint:gosec // VolumeMount, not hardcoded credentials
varTokenVolumeMount = corev1.VolumeMount{
Name: varTokenVolume.Name,
MountPath: queue.TokenDirectory,
}
varPodInfoVolume = corev1.Volume{
Name: "pod-info",
VolumeSource: corev1.VolumeSource{
DownwardAPI: &corev1.DownwardAPIVolumeSource{
Items: []corev1.DownwardAPIVolumeFile{{
Path: queue.PodInfoAnnotationsFilename,
FieldRef: &corev1.ObjectFieldSelector{
FieldPath: "metadata.annotations",
},
}},
},
},
}
varPodInfoVolumeMount = corev1.VolumeMount{
Name: varPodInfoVolume.Name,
MountPath: queue.PodInfoDirectory,
ReadOnly: true,
}
// This PreStop hook is actually calling an endpoint on the queue-proxy
// because of the way PreStop hooks are called by kubelet. We use this
// to block the user-container from exiting before the queue-proxy is ready
// to exit so we can guarantee that there are no more requests in flight.
userLifecycle = &corev1.Lifecycle{
PreStop: &corev1.LifecycleHandler{
HTTPGet: &corev1.HTTPGetAction{
Port: intstr.FromInt(networking.QueueAdminPort),
Path: queue.RequestQueueDrainPath,
},
},
}
)
func addToken(tokenVolume *corev1.Volume, filename string, audience string, expiry *int64) {
if filename == "" || audience == "" {
return
}
volumeProjection := &corev1.VolumeProjection{
ServiceAccountToken: &corev1.ServiceAccountTokenProjection{
ExpirationSeconds: expiry,
Path: filename,
Audience: audience,
},
}
tokenVolume.VolumeSource.Projected.Sources = append(tokenVolume.VolumeSource.Projected.Sources, *volumeProjection)
}
func certVolume(secret string) corev1.Volume {
return corev1.Volume{
Name: certVolumeName,
VolumeSource: corev1.VolumeSource{
Secret: &corev1.SecretVolumeSource{
SecretName: secret,
},
},
}
}
func rewriteUserProbe(p *corev1.Probe, userPort int) {
if p == nil {
return
}
switch {
case p.HTTPGet != nil:
p.HTTPGet.Port = intstr.FromInt(userPort)
// With mTLS enabled, Istio rewrites probes, but doesn't spoof the kubelet
// user agent, so we need to inject an extra header to be able to distinguish
// between probes and real requests.
p.HTTPGet.HTTPHeaders = append(p.HTTPGet.HTTPHeaders, corev1.HTTPHeader{
Name: netheader.KubeletProbeKey,
Value: queue.Name,
})
case p.TCPSocket != nil:
p.TCPSocket.Port = intstr.FromInt(userPort)
}
}
func makePodSpec(rev *v1.Revision, cfg *config.Config) (*corev1.PodSpec, error) {
queueContainer, err := makeQueueContainer(rev, cfg)
tokenVolume := varTokenVolume.DeepCopy()
if err != nil {
return nil, fmt.Errorf("failed to create queue-proxy container: %w", err)
}
var extraVolumes []corev1.Volume
podInfoFeature, podInfoExists := rev.Annotations[apiconfig.QueueProxyPodInfoFeatureKey]
if cfg.Features.QueueProxyMountPodInfo == apiconfig.Enabled ||
(cfg.Features.QueueProxyMountPodInfo == apiconfig.Allowed &&
podInfoExists &&
strings.EqualFold(podInfoFeature, string(apiconfig.Enabled))) {
queueContainer.VolumeMounts = append(queueContainer.VolumeMounts, varPodInfoVolumeMount)
extraVolumes = append(extraVolumes, varPodInfoVolume)
}
audiences := make([]string, 0, len(cfg.Deployment.QueueSidecarTokenAudiences))
for k := range cfg.Deployment.QueueSidecarTokenAudiences {
audiences = append(audiences, k)
}
sort.Strings(audiences)
for _, aud := range audiences {
// add token for audience <aud> under filename <aud>
addToken(tokenVolume, aud, aud, ptr.Int64(3600))
}
if len(tokenVolume.VolumeSource.Projected.Sources) > 0 {
queueContainer.VolumeMounts = append(queueContainer.VolumeMounts, varTokenVolumeMount)
extraVolumes = append(extraVolumes, *tokenVolume)
}
if cfg.Network.SystemInternalTLSEnabled() {
queueContainer.VolumeMounts = append(queueContainer.VolumeMounts, varCertVolumeMount)
extraVolumes = append(extraVolumes, certVolume(networking.ServingCertName))
}
podSpec := BuildPodSpec(rev, append(BuildUserContainers(rev), *queueContainer), cfg)
podSpec.Volumes = append(podSpec.Volumes, extraVolumes...)
if cfg.Observability.EnableVarLogCollection {
podSpec.Volumes = append(podSpec.Volumes, varLogVolume)
for i, container := range podSpec.Containers {
if container.Name == QueueContainerName {
continue
}
varLogMount := varLogVolumeMount.DeepCopy()
varLogMount.SubPathExpr += container.Name
container.VolumeMounts = append(container.VolumeMounts, *varLogMount)
container.Env = append(container.Env, buildVarLogSubpathEnvs()...)
podSpec.Containers[i] = container
}
}
return podSpec, nil
}
// BuildUserContainers makes an array of containers from the Revision template.
func BuildUserContainers(rev *v1.Revision) []corev1.Container {
containers := make([]corev1.Container, 0, len(rev.Spec.PodSpec.Containers))
for i := range rev.Spec.PodSpec.Containers {
var container corev1.Container
if len(rev.Spec.PodSpec.Containers[i].Ports) != 0 || len(rev.Spec.PodSpec.Containers) == 1 {
container = makeServingContainer(*rev.Spec.PodSpec.Containers[i].DeepCopy(), rev)
} else {
container = makeContainer(*rev.Spec.PodSpec.Containers[i].DeepCopy(), rev)
}
// The below logic is safe because the image digests in Status.ContainerStatus will have been resolved
// before this method is called. We check for an empty array here because the method can also be
// called during DryRun, where ContainerStatuses will not yet have been resolved.
if len(rev.Status.ContainerStatuses) != 0 {
if rev.Status.ContainerStatuses[i].ImageDigest != "" {
container.Image = rev.Status.ContainerStatuses[i].ImageDigest
}
}
containers = append(containers, container)
}
return containers
}
func makeContainer(container corev1.Container, rev *v1.Revision) corev1.Container {
// Adding or removing an overwritten corev1.Container field here? Don't forget to
// update the fieldmasks / validations in pkg/apis/serving
container.Lifecycle = userLifecycle
container.Env = append(container.Env, getKnativeEnvVar(rev)...)
// Explicitly disable stdin and tty allocation
container.Stdin = false
container.TTY = false
if container.TerminationMessagePolicy == "" {
container.TerminationMessagePolicy = corev1.TerminationMessageFallbackToLogsOnError
}
return container
}
func makeServingContainer(servingContainer corev1.Container, rev *v1.Revision) corev1.Container {
userPort := getUserPort(rev)
userPortStr := strconv.Itoa(int(userPort))
// Replacement is safe as only up to a single port is allowed on the Revision
servingContainer.Ports = buildContainerPorts(userPort)
servingContainer.Env = append(servingContainer.Env, buildUserPortEnv(userPortStr))
container := makeContainer(servingContainer, rev)
if container.ReadinessProbe != nil {
if container.ReadinessProbe.HTTPGet != nil || container.ReadinessProbe.TCPSocket != nil || container.ReadinessProbe.GRPC != nil {
// HTTP, TCP and gRPC ReadinessProbes are executed by the queue-proxy directly against the
// user-container instead of via kubelet.
container.ReadinessProbe = nil
}
}
// If the client provides probes, we should fill in the port for them.
rewriteUserProbe(container.LivenessProbe, int(userPort))
return container
}
// BuildPodSpec creates a PodSpec from the given revision and containers.
// cfg can be passed as nil if not within revision reconciliation context.
func BuildPodSpec(rev *v1.Revision, containers []corev1.Container, cfg *config.Config) *corev1.PodSpec {
pod := rev.Spec.PodSpec.DeepCopy()
pod.Containers = containers
pod.TerminationGracePeriodSeconds = rev.Spec.TimeoutSeconds
if cfg != nil && pod.EnableServiceLinks == nil {
pod.EnableServiceLinks = cfg.Defaults.EnableServiceLinks
}
return pod
}
func getUserPort(rev *v1.Revision) int32 {
ports := rev.Spec.GetContainer().Ports
if len(ports) > 0 && ports[0].ContainerPort != 0 {
return ports[0].ContainerPort
}
return v1.DefaultUserPort
}
func buildContainerPorts(userPort int32) []corev1.ContainerPort {
return []corev1.ContainerPort{{
Name: v1.UserPortName,
ContainerPort: userPort,
}}
}
func buildVarLogSubpathEnvs() []corev1.EnvVar {
return []corev1.EnvVar{{
Name: "K_INTERNAL_POD_NAME",
ValueFrom: &corev1.EnvVarSource{
FieldRef: &corev1.ObjectFieldSelector{
FieldPath: "metadata.name",
},
},
}, {
Name: "K_INTERNAL_POD_NAMESPACE",
ValueFrom: &corev1.EnvVarSource{
FieldRef: &corev1.ObjectFieldSelector{
FieldPath: "metadata.namespace",
},
},
}}
}
func buildUserPortEnv(userPort string) corev1.EnvVar {
return corev1.EnvVar{
Name: "PORT",
Value: userPort,
}
}
// MakeDeployment constructs a K8s Deployment resource from a revision.
func MakeDeployment(rev *v1.Revision, cfg *config.Config) (*appsv1.Deployment, error) {
podSpec, err := makePodSpec(rev, cfg)
if err != nil {
return nil, fmt.Errorf("failed to create PodSpec: %w", err)
}
replicaCount := cfg.Autoscaler.InitialScale
_, ann, found := autoscaling.InitialScaleAnnotation.Get(rev.Annotations)
if found {
// Ignore errors and no error checking because already validated in webhook.
rc, _ := strconv.ParseInt(ann, 10, 32)
replicaCount = int32(rc)
}
progressDeadline := int32(cfg.Deployment.ProgressDeadline.Seconds())
_, pdAnn, pdFound := serving.ProgressDeadlineAnnotation.Get(rev.Annotations)
if pdFound {
// Ignore errors and no error checking because already validated in webhook.
pd, _ := time.ParseDuration(pdAnn)
progressDeadline = int32(pd.Seconds())
}
labels := makeLabels(rev)
anns := makeAnnotations(rev)
// Slowly but steadily roll the deployment out, to have the least possible impact.
maxUnavailable := intstr.FromInt(0)
return &appsv1.Deployment{
ObjectMeta: metav1.ObjectMeta{
Name: names.Deployment(rev),
Namespace: rev.Namespace,
Labels: labels,
Annotations: anns,
OwnerReferences: []metav1.OwnerReference{*kmeta.NewControllerRef(rev)},
},
Spec: appsv1.DeploymentSpec{
Replicas: ptr.Int32(replicaCount),
Selector: makeSelector(rev),
ProgressDeadlineSeconds: ptr.Int32(progressDeadline),
Strategy: appsv1.DeploymentStrategy{
Type: appsv1.RollingUpdateDeploymentStrategyType,
RollingUpdate: &appsv1.RollingUpdateDeployment{
MaxUnavailable: &maxUnavailable,
},
},
Template: corev1.PodTemplateSpec{
ObjectMeta: metav1.ObjectMeta{
Labels: labels,
Annotations: anns,
},
Spec: *podSpec,
},
},
}, nil
}