forked from kubernetes/test-infra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclient.go
153 lines (129 loc) · 4.41 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
/*
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"
"errors"
"flag"
"fmt"
"os"
"time"
"github.com/sirupsen/logrus"
"k8s.io/apimachinery/pkg/runtime"
"k8s.io/client-go/rest"
"k8s.io/client-go/tools/clientcmd"
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.
type KubernetesClientOptions struct {
inMemory bool
kubeConfig string
}
// AddFlags adds kube client flags to existing FlagSet.
func (o *KubernetesClientOptions) AddFlags(fs *flag.FlagSet) {
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() error {
if o.kubeConfig != "" {
if _, err := os.Stat(o.kubeConfig); err != nil {
return err
}
}
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{})
}
// CacheBackedClient returns 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) CacheBackedClient(namespace string, startCacheFor ...runtime.Object) (ctrlruntimeclient.Client, error) {
if o.inMemory {
return fakectrlruntimeclient.NewFakeClient(), nil
}
cfg, err := o.Cfg()
if err != nil {
return nil, err
}
cfg.QPS = 100
cfg.Burst = 200
mgr, err := manager.New(cfg, manager.Options{
LeaderElection: false,
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.
for _, t := range startCacheFor {
if _, err := mgr.GetCache().GetInformer(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.Done()); 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.Done()); !synced {
return nil, errors.New("timeout waiting for cache sync")
}
logrus.WithField("sync-duration", time.Since(startSyncTime).String()).Info("Cache synced")
return mgr.GetClient(), 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()
} else {
cfg, err = clientcmd.BuildConfigFromFlags("", o.kubeConfig)
}
if err != nil {
return nil, fmt.Errorf("failed to construct rest config: %v", err)
}
return cfg, nil
}
// Type defines a Custom Resource Definition (CRD) Type.
type Type struct {
Kind, ListKind string
Singular, Plural string
Object runtime.Object
Collection runtime.Object
}