-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
crd.go
264 lines (237 loc) · 7.96 KB
/
crd.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
/*
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 test
// crd contains functions that construct boilerplate CRD definitions.
import (
"math/rand"
"sync"
"time"
corev1 "k8s.io/api/core/v1"
"k8s.io/apimachinery/pkg/api/resource"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"github.com/knative/pkg/test/logging"
"github.com/knative/serving/pkg/apis/serving/v1alpha1"
)
// ResourceNames holds names of various resources.
type ResourceNames struct {
Config string
Route string
Revision string
Service string
TrafficTarget string
Domain string
Image string
}
// ResourceObjects holds types of the resource objects.
type ResourceObjects struct {
Route *v1alpha1.Route
Config *v1alpha1.Configuration
Service *v1alpha1.Service
Revision *v1alpha1.Revision
}
// Route returns a Route object in namespace using the route and configuration
// names in names.
func Route(namespace string, names ResourceNames) *v1alpha1.Route {
return &v1alpha1.Route{
ObjectMeta: metav1.ObjectMeta{
Namespace: namespace,
Name: names.Route,
},
Spec: v1alpha1.RouteSpec{
Traffic: []v1alpha1.TrafficTarget{
{
Name: names.TrafficTarget,
ConfigurationName: names.Config,
Percent: 100,
},
},
},
}
}
// BlueGreenRoute returns a Route object in namespace using the route and configuration
// names in names. Traffic is split evenly between blue and green.
func BlueGreenRoute(namespace string, names, blue, green ResourceNames) *v1alpha1.Route {
return &v1alpha1.Route{
ObjectMeta: metav1.ObjectMeta{
Namespace: namespace,
Name: names.Route,
},
Spec: v1alpha1.RouteSpec{
Traffic: []v1alpha1.TrafficTarget{{
Name: blue.TrafficTarget,
RevisionName: blue.Revision,
Percent: 50,
}, {
Name: green.TrafficTarget,
RevisionName: green.Revision,
Percent: 50,
}},
},
}
}
// ConfigurationSpec returns the spec of a configuration to be used throughout different
// CRD helpers.
func ConfigurationSpec(imagePath string, options *Options) *v1alpha1.ConfigurationSpec {
spec := &v1alpha1.ConfigurationSpec{
RevisionTemplate: v1alpha1.RevisionTemplateSpec{
Spec: v1alpha1.RevisionSpec{
Container: corev1.Container{
Image: imagePath,
Resources: options.ContainerResources,
ReadinessProbe: options.ReadinessProbe,
},
ContainerConcurrency: v1alpha1.RevisionContainerConcurrencyType(options.ContainerConcurrency),
},
},
}
if options.RevisionTimeoutSeconds > 0 {
spec.RevisionTemplate.Spec.TimeoutSeconds = options.RevisionTimeoutSeconds
}
if options.EnvVars != nil {
spec.RevisionTemplate.Spec.Container.Env = options.EnvVars
}
return spec
}
// Configuration returns a Configuration object in namespace with the name names.Config
// that uses the image specified by imagePath.
func Configuration(namespace string, names ResourceNames, imagePath string, options *Options) *v1alpha1.Configuration {
config := &v1alpha1.Configuration{
ObjectMeta: metav1.ObjectMeta{
Namespace: namespace,
Name: names.Config,
},
Spec: *ConfigurationSpec(imagePath, options),
}
if options.ContainerPorts != nil && len(options.ContainerPorts) > 0 {
config.Spec.RevisionTemplate.Spec.Container.Ports = options.ContainerPorts
}
return config
}
// ConfigurationWithBuild returns a Configurtion object in the `namespace`
// with the name `names.Config` that uses the provided Build spec `build`
// and image specified by `imagePath`.
func ConfigurationWithBuild(namespace string, names ResourceNames, build *v1alpha1.RawExtension, imagePath string) *v1alpha1.Configuration {
return &v1alpha1.Configuration{
ObjectMeta: metav1.ObjectMeta{
Namespace: namespace,
Name: names.Config,
},
Spec: v1alpha1.ConfigurationSpec{
Build: build,
RevisionTemplate: v1alpha1.RevisionTemplateSpec{
Spec: v1alpha1.RevisionSpec{
Container: corev1.Container{
Image: imagePath,
},
},
},
},
}
}
// LatestService returns a RunLatest Service object in namespace with the name names.Service
// that uses the image specified by imagePath.
func LatestService(namespace string, names ResourceNames, imagePath string, options *Options) *v1alpha1.Service {
return &v1alpha1.Service{
ObjectMeta: metav1.ObjectMeta{
Namespace: namespace,
Name: names.Service,
},
Spec: v1alpha1.ServiceSpec{
RunLatest: &v1alpha1.RunLatestType{
Configuration: *ConfigurationSpec(imagePath, options),
},
},
}
}
// LatestServiceWithResources returns a RunLatest Service object in namespace with the name names.Service
// that uses the image specified by imagePath, and small constant resources.
func LatestServiceWithResources(namespace string, names ResourceNames, imagePath string) *v1alpha1.Service {
svc := LatestService(namespace, names, imagePath, &Options{})
svc.Spec.RunLatest.Configuration.RevisionTemplate.Spec.Container.Resources = corev1.ResourceRequirements{
Limits: corev1.ResourceList{
corev1.ResourceCPU: resource.MustParse("10m"),
corev1.ResourceMemory: resource.MustParse("50Mi"),
},
Requests: corev1.ResourceList{
corev1.ResourceCPU: resource.MustParse("10m"),
corev1.ResourceMemory: resource.MustParse("20Mi"),
},
}
return svc
}
// ReleaseService returns a Release Service object in namespace with the name names.Service that uses
// the image specifeid by imagePath. It also takes a list of 1-2 revisons and a rolloutPercent to be
// used to configure routing
func ReleaseService(svc *v1alpha1.Service, revisions []string, rolloutPercent int) *v1alpha1.Service {
var config v1alpha1.ConfigurationSpec
if svc.Spec.RunLatest != nil {
config = svc.Spec.RunLatest.Configuration
} else if svc.Spec.Release != nil {
config = svc.Spec.Release.Configuration
} else if svc.Spec.Pinned != nil {
config = svc.Spec.Pinned.Configuration
}
return &v1alpha1.Service{
ObjectMeta: svc.ObjectMeta,
Spec: v1alpha1.ServiceSpec{
Release: &v1alpha1.ReleaseType{
Revisions: revisions,
RolloutPercent: rolloutPercent,
Configuration: config,
},
},
}
}
// ManualService returns a Manual Service object in namespace with the name names.Service
func ManualService(svc *v1alpha1.Service) *v1alpha1.Service {
return &v1alpha1.Service{
ObjectMeta: svc.ObjectMeta,
Spec: v1alpha1.ServiceSpec{
Manual: &v1alpha1.ManualType{},
},
}
}
const (
letterBytes = "abcdefghijklmnopqrstuvwxyz"
randSuffixLen = 8
)
// r is used by AppendRandomString to generate a random string. It is seeded with the time
// at import so the strings will be different between test runs.
var (
r *rand.Rand
rndMutex *sync.Mutex
)
// once is used to initialize r
var once sync.Once
func initSeed(logger *logging.BaseLogger) func() {
return func() {
seed := time.Now().UTC().UnixNano()
logger.Infof("Seeding rand.Rand with %d", seed)
r = rand.New(rand.NewSource(seed))
rndMutex = &sync.Mutex{}
}
}
// AppendRandomString will generate a random string that begins with prefix. This is useful
// if you want to make sure that your tests can run at the same time against the same
// environment without conflicting. This method will seed rand with the current time when
// called for the first time.
func AppendRandomString(prefix string, logger *logging.BaseLogger) string {
once.Do(initSeed(logger))
suffix := make([]byte, randSuffixLen)
rndMutex.Lock()
for i := range suffix {
suffix[i] = letterBytes[r.Intn(len(letterBytes))]
}
rndMutex.Unlock()
return prefix + string(suffix)
}