-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
crd.go
157 lines (141 loc) · 4.38 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
/*
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"
"github.com/knative/serving/pkg/apis/serving/v1alpha1"
"go.uber.org/zap"
corev1 "k8s.io/api/core/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
)
// ResourceNames holds names of various resources.
type ResourceNames struct {
Config string
Route string
Revision string
Service string
TrafficTarget string
}
// 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{
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,
}},
},
}
}
// Configuration returns a Configuration object in namespace with the name names.Config
// that uses the image specifed by imagePath.
func Configuration(namespace string, names ResourceNames, imagePath string) *v1alpha1.Configuration {
return &v1alpha1.Configuration{
ObjectMeta: metav1.ObjectMeta{
Namespace: namespace,
Name: names.Config,
},
Spec: v1alpha1.ConfigurationSpec{
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 specifed by imagePath.
func LatestService(namespace string, names ResourceNames, imagePath string) *v1alpha1.Service {
return &v1alpha1.Service{
ObjectMeta: metav1.ObjectMeta{
Namespace: namespace,
Name: names.Service,
},
Spec: v1alpha1.ServiceSpec{
RunLatest: &v1alpha1.RunLatestType{
Configuration: v1alpha1.ConfigurationSpec{
RevisionTemplate: v1alpha1.RevisionTemplateSpec{
Spec: v1alpha1.RevisionSpec{
Container: corev1.Container{
Image: imagePath,
},
},
},
},
},
},
}
}
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
// once is used to initialize r
var once sync.Once
func initSeed(logger *zap.SugaredLogger) func() {
return func() {
seed := time.Now().UTC().UnixNano()
logger.Infof("Seeding rand.Rand with %v", seed)
r = rand.New(rand.NewSource(seed))
}
}
// 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 *zap.SugaredLogger) string {
once.Do(initSeed(logger))
suffix := make([]byte, randSuffixLen)
for i := range suffix {
suffix[i] = letterBytes[r.Intn(len(letterBytes))]
}
return prefix + string(suffix)
}