-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy pathdeploy.go
268 lines (234 loc) · 8.66 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
/*
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"
"strconv"
network "knative.dev/networking/pkg"
"knative.dev/pkg/kmeta"
"knative.dev/pkg/ptr"
"knative.dev/serving/pkg/apis/autoscaling"
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"
)
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)_",
}
// 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.Handler{
HTTPGet: &corev1.HTTPGetAction{
Port: intstr.FromInt(networking.QueueAdminPort),
Path: queue.RequestQueueDrainPath,
},
},
}
)
func rewriteUserProbe(p *corev1.Probe, userPort int) {
if p == nil {
return
}
switch {
case p.HTTPGet != nil:
// For HTTP probes, we route them through the queue container
// so that we know the queue proxy is ready/live as well.
// It doesn't matter to which queue serving port we are forwarding the probe.
p.HTTPGet.Port = intstr.FromInt(networking.BackendHTTPPort)
// 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: network.KubeletProbeHeaderName,
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)
if err != nil {
return nil, fmt.Errorf("failed to create queue-proxy container: %w", err)
}
podSpec := BuildPodSpec(rev, append(BuildUserContainers(rev), *queueContainer), cfg)
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 {
// HTTP and TCP 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 := rev.Annotations[autoscaling.InitialScaleAnnotationKey]
if found {
// Ignore errors and no error checking because already validated in webhook.
rc, _ := strconv.ParseInt(ann, 10, 32)
replicaCount = int32(rc)
}
labels := makeLabels(rev)
anns := makeAnnotations(rev)
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(int32(cfg.Deployment.ProgressDeadline.Seconds())),
Template: corev1.PodTemplateSpec{
ObjectMeta: metav1.ObjectMeta{
Labels: labels,
Annotations: anns,
},
Spec: *podSpec,
},
},
}, nil
}