forked from kubernetes-sigs/boskos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
client.go
218 lines (184 loc) · 7.05 KB
/
client.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
/*
Copyright 2017 The Kubernetes 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 crds
import (
"context"
"flag"
"fmt"
"os"
"time"
"github.com/pkg/errors"
"github.com/sirupsen/logrus"
"k8s.io/apimachinery/pkg/api/meta"
"k8s.io/apimachinery/pkg/runtime"
"k8s.io/apimachinery/pkg/runtime/schema"
"k8s.io/client-go/rest"
"k8s.io/client-go/tools/clientcmd"
"k8s.io/client-go/tools/record"
"sigs.k8s.io/controller-runtime/pkg/cache"
"sigs.k8s.io/controller-runtime/pkg/cache/informertest"
ctrlruntimeclient "sigs.k8s.io/controller-runtime/pkg/client"
fakectrlruntimeclient "sigs.k8s.io/controller-runtime/pkg/client/fake"
"sigs.k8s.io/controller-runtime/pkg/manager"
"k8s.io/test-infra/prow/interrupts"
)
// KubernetesClientOptions are flag options used to create a kube client.
// It implements the k8s.io/test-infra/pkg/flagutil.OptionGroup interface.
type KubernetesClientOptions struct {
inMemory bool
kubeConfig string
projectedTokenFile string
}
// AddFlags adds kube client flags to existing FlagSet.
func (o *KubernetesClientOptions) AddFlags(fs *flag.FlagSet) {
fs.StringVar(&o.projectedTokenFile, "projected-token-file", "", "A projected serviceaccount token file. If set, this will be configured as token file in the in-cluster config.")
fs.StringVar(&o.kubeConfig, "kubeconfig", "", "absolute path to the kubeConfig file")
fs.BoolVar(&o.inMemory, "in_memory", false, "Use in memory client instead of CRD")
}
// Validate validates Kubernetes client options.
func (o *KubernetesClientOptions) Validate(dryRun bool) error {
if o.kubeConfig != "" {
if _, err := os.Stat(o.kubeConfig); err != nil {
return errors.Wrapf(err, "Invalid kubeconfig '%s'", o.kubeConfig)
}
}
return nil
}
// Client returns a ClientInterface based on the flags provided.
func (o *KubernetesClientOptions) Client() (ctrlruntimeclient.Client, error) {
if o.inMemory {
return fakectrlruntimeclient.NewFakeClient(), nil
}
cfg, err := o.Cfg()
if err != nil {
return nil, err
}
return ctrlruntimeclient.New(cfg, ctrlruntimeclient.Options{})
}
// Manager returns a Manager. It contains a client whose Reader is cache backed. Namespace can be empty
// in which case the client will use all namespaces.
// It blocks until the cache was synced for all types passed in startCacheFor.
func (o *KubernetesClientOptions) Manager(namespace string, enableLeaderElection bool, startCacheFor ...ctrlruntimeclient.Object) (manager.Manager, error) {
if o.inMemory {
return manager.New(&rest.Config{}, manager.Options{
LeaderElection: false,
MapperProvider: func(_ *rest.Config) (meta.RESTMapper, error) { return &fakeRESTMapper{}, nil },
MetricsBindAddress: "0",
NewCache: func(_ *rest.Config, _ cache.Options) (cache.Cache, error) {
return &informertest.FakeInformers{}, nil
},
NewClient: func(_ cache.Cache, _ *rest.Config, _ ctrlruntimeclient.Options, _ ...ctrlruntimeclient.Object) (ctrlruntimeclient.Client, error) {
return fakectrlruntimeclient.NewFakeClient(), nil
},
EventBroadcaster: record.NewBroadcasterForTests(time.Hour),
})
}
cfg, err := o.Cfg()
if err != nil {
return nil, err
}
cfg.QPS = 100
cfg.Burst = 200
mgr, err := manager.New(cfg, manager.Options{
LeaderElection: enableLeaderElection,
LeaderElectionReleaseOnCancel: true,
LeaderElectionResourceLock: "leases",
LeaderElectionID: "boskos-server",
Namespace: namespace,
MetricsBindAddress: "0",
})
if err != nil {
return nil, fmt.Errorf("failed to construct manager: %v", err)
}
// Allocate an informer so our cache actually waits for these types to
// be synced. Must be done before we start the mgr, else this may block
// indefinitely if there is an issue.
ctx := interrupts.Context()
for _, t := range startCacheFor {
if _, err := mgr.GetCache().GetInformer(ctx, t); err != nil {
return nil, fmt.Errorf("failed to get informer for type %T: %v", t, err)
}
}
interrupts.Run(func(ctx context.Context) {
// Exiting like this is not nice, but the interrupts package
// doesn't allow us to stop the app. Furthermore, the behaviour
// of the reading client is undefined after the manager stops,
// so we should bail ASAP.
if err := mgr.Start(ctx); err != nil {
logrus.WithError(err).Fatal("Mgr failed.")
}
logrus.Info("Mgr finished gracefully.")
os.Exit(0)
})
ctx, cancel := context.WithTimeout(context.Background(), 30*time.Second)
defer cancel()
startSyncTime := time.Now()
if synced := mgr.GetCache().WaitForCacheSync(ctx); !synced {
return nil, errors.New("timeout waiting for cache sync")
}
logrus.WithField("sync-duration", time.Since(startSyncTime).String()).Info("Cache synced")
return mgr, nil
}
// Cfg returns the *rest.Config for the configured cluster
func (o *KubernetesClientOptions) Cfg() (*rest.Config, error) {
var cfg *rest.Config
var err error
if o.kubeConfig == "" {
cfg, err = rest.InClusterConfig()
if cfg != nil && o.projectedTokenFile != "" {
cfg.BearerToken = ""
cfg.BearerTokenFile = o.projectedTokenFile
logrus.WithField("tokenfile", o.projectedTokenFile).Info("Using projected token file")
}
} else {
cfg, err = clientcmd.BuildConfigFromFlags("", o.kubeConfig)
}
if err != nil {
return nil, fmt.Errorf("failed to construct rest config: %v", err)
}
return cfg, nil
}
// +k8s:deepcopy-gen=false
// Type defines a Custom Resource Definition (CRD) Type.
type Type struct {
Kind, ListKind string
Singular, Plural string
Object runtime.Object
Collection runtime.Object
}
// fakeRESTMapper is a RESTMapper
var _ meta.RESTMapper = &fakeRESTMapper{}
// fakeRESTMapper is used for boskos in-memory mode
type fakeRESTMapper struct {
}
func (f *fakeRESTMapper) KindFor(resource schema.GroupVersionResource) (schema.GroupVersionKind, error) {
return schema.GroupVersionKind{}, nil
}
func (f *fakeRESTMapper) KindsFor(resource schema.GroupVersionResource) ([]schema.GroupVersionKind, error) {
return nil, nil
}
func (f *fakeRESTMapper) ResourceFor(input schema.GroupVersionResource) (schema.GroupVersionResource, error) {
return schema.GroupVersionResource{}, nil
}
func (f *fakeRESTMapper) ResourcesFor(input schema.GroupVersionResource) ([]schema.GroupVersionResource, error) {
return nil, nil
}
func (f *fakeRESTMapper) RESTMapping(gk schema.GroupKind, versions ...string) (*meta.RESTMapping, error) {
return nil, nil
}
func (f *fakeRESTMapper) RESTMappings(gk schema.GroupKind, versions ...string) ([]*meta.RESTMapping, error) {
return nil, nil
}
func (f *fakeRESTMapper) ResourceSingularizer(resource string) (singular string, err error) {
return "", nil
}