-
Notifications
You must be signed in to change notification settings - Fork 687
/
client.go
384 lines (326 loc) · 11.3 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
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
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
// Package k8s is a facade over (super-terrible, very difficult to understand)
// client-go to provide a higher-level interface to Kubernetes, with support
// for simple, high-level APIs for watching resources (including from stable,
// long-running processes) and implementing basic controllers.
//
// It is intended to offer the same API for (nearly) every Kubernetes resource,
// including easy CRD access without codegen.
package k8s
import (
"context"
"fmt"
"strings"
"github.com/datawire/ambassador/v2/pkg/kates"
"k8s.io/apimachinery/pkg/api/meta"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/runtime/schema"
"k8s.io/cli-runtime/pkg/genericclioptions"
"k8s.io/client-go/dynamic"
"k8s.io/client-go/rest"
"github.com/google/shlex"
"github.com/pkg/errors"
"github.com/spf13/pflag"
_ "k8s.io/client-go/plugin/pkg/client/auth"
)
const (
// NamespaceAll is the argument to specify on a context when you want to list or filter
// resources across all namespaces.
NamespaceAll = metav1.NamespaceAll
// NamespaceNone is the argument for a context when there is no namespace.
NamespaceNone = metav1.NamespaceNone
)
// KubeInfo holds the data required to talk to a cluster
type KubeInfo struct {
flags *pflag.FlagSet
configFlags *genericclioptions.ConfigFlags
config *rest.Config
namespace string
}
// NewKubeInfo returns a useable KubeInfo, handling optional
// kubeconfig, context, and namespace.
func NewKubeInfo(configfile, context, namespace string) *KubeInfo {
// Because we are constructing the args for this flagset
// below, it's ok to use pflag.PanicOnError. We should never
// supply it with erroneous arguments.
flags := pflag.NewFlagSet("KubeInfo", pflag.PanicOnError)
result := NewKubeInfoFromFlags(flags)
var args []string
if configfile != "" {
args = append(args, "--kubeconfig", configfile)
}
if context != "" {
args = append(args, "--context", context)
}
if namespace != "" {
args = append(args, "--namespace", namespace)
}
err := flags.Parse(args)
if err != nil {
// Args is constructed by us, we should never get an
// error, so it's ok to panic.
panic(err)
}
return result
}
// NewKubeInfoFromFlags adds the generic kubeconfig flags to the
// provided FlagSet, and returns a *KubeInfo that configures itself
// based on those flags.
func NewKubeInfoFromFlags(flags *pflag.FlagSet) *KubeInfo {
configFlags := genericclioptions.NewConfigFlags(false)
// We can disable or enable flags by setting them to
// nil/non-nil prior to calling .AddFlags().
//
// .Username and .Password are already disabled by default in
// genericclioptions.NewConfigFlags().
configFlags.AddFlags(flags)
return &KubeInfo{flags, configFlags, nil, ""}
}
func (info *KubeInfo) load() error {
if info.config == nil {
configLoader := info.configFlags.ToRawKubeConfigLoader()
config, err := configLoader.ClientConfig()
if err != nil {
return errors.Errorf("Failed to get REST config: %v", err)
}
namespace, _, err := configLoader.Namespace()
if err != nil {
return errors.Errorf("Failed to get namespace: %v", err)
}
info.config = config
info.namespace = namespace
}
return nil
}
// GetConfigFlags returns the genericclioptions.ConfigFlags from inside the KubeInfo
func (info *KubeInfo) GetConfigFlags() *genericclioptions.ConfigFlags {
return info.configFlags
}
// Namespace returns the namespace for a KubeInfo.
func (info *KubeInfo) Namespace() (string, error) {
err := info.load()
if err != nil {
return "", err
}
return info.namespace, nil
}
// GetRestConfig returns a REST config
func (info *KubeInfo) GetRestConfig() (*rest.Config, error) {
err := info.load()
if err != nil {
return nil, err
}
return info.config, nil
}
// GetKubectl returns the arguments for a runnable kubectl command that talks to
// the same cluster as the associated ClientConfig.
func (info *KubeInfo) GetKubectl(args string) (string, error) {
parts, err := shlex.Split(args)
if err != nil {
panic(err)
}
kargs, err := info.GetKubectlArray(parts...)
if err != nil {
return "", err
}
return strings.Join(kargs, " "), nil
}
// GetKubectlArray does what GetKubectl does but returns the result as a []string.
func (info *KubeInfo) GetKubectlArray(args ...string) ([]string, error) {
res := []string{} // No leading "kubectl" because reasons...
info.flags.Visit(func(f *pflag.Flag) {
res = append(res, fmt.Sprintf("--%s", f.Name), f.Value.String())
})
res = append(res, args...)
return res, nil
}
// Client is the top-level handle to the Kubernetes cluster.
type Client struct {
config *rest.Config
Namespace string
restMapper meta.RESTMapper
}
// NewClient constructs a k8s.Client, optionally using a previously-constructed
// KubeInfo.
func NewClient(info *KubeInfo) (*Client, error) {
if info == nil {
info = NewKubeInfo("", "", "") // Empty file/ctx/ns for defaults
}
config, err := info.GetRestConfig()
if err != nil {
return nil, err
}
namespace, err := info.Namespace()
if err != nil {
return nil, err
}
mapper, _, err := kates.NewRESTMapper(info.configFlags)
if err != nil {
return nil, err
}
return &Client{
config: config,
Namespace: namespace,
restMapper: mapper,
}, nil
}
// ResourceType describes a Kubernetes resource type in a particular cluster.
// See ResolveResourceType() for more information.
//
// It is equivalent to a k8s.io/apimachinery/pkg/api/meta.RESTMapping
type ResourceType struct {
Group string
Version string
Name string // lowercase plural, called Resource in Kubernetes code
Kind string // uppercase singular
Namespaced bool
}
func (r ResourceType) String() string {
return r.Name + "." + r.Version + "." + r.Group
}
// ResolveResourceType takes the name of a resource type
// (TYPE[[.VERSION].GROUP], where TYPE may be singular, plural, or an
// abbreviation; like you might pass to `kubectl get`) and returns
// cluster-specific canonical information about that resource type.
//
// For example, with Kubernetes v1.10.5:
// "pod" -> {Group: "", Version: "v1", Name: "pods", Kind: "Pod", Namespaced: true}
// "deployment" -> {Group: "extensions", Version: "v1beta1", Name: "deployments", Kind: "Deployment", Namespaced: true}
// "svc.v1." -> {Group: "", Version: "v1", Name: "services", Kind: "Service", Namespaced: true}
//
// Newer versions of Kubernetes might instead put "pod" in the "core"
// group, or put "deployment" in apps/v1 instead of
// extensions/v1beta1.
func (c *Client) ResolveResourceType(resource string) (ResourceType, error) {
restmapping, err := mappingFor(resource, c.restMapper)
if err != nil {
return ResourceType{}, err
}
return ResourceType{
Group: restmapping.GroupVersionKind.Group,
Version: restmapping.GroupVersionKind.Version,
Name: restmapping.Resource.Resource,
Kind: restmapping.GroupVersionKind.Kind,
Namespaced: restmapping.Scope.Name() == meta.RESTScopeNameNamespace,
}, nil
}
// mappingFor returns the RESTMapping for the Kind given, or the Kind referenced by the resource.
// Prefers a fully specified GroupVersionResource match. If one is not found, we match on a fully
// specified GroupVersionKind, or fallback to a match on GroupKind.
//
// This is copy/pasted from k8s.io/cli-runtime/pkg/resource.Builder.mappingFor() (which is
// unfortunately private), with modified lines marked with "// MODIFIED".
func mappingFor(resourceOrKindArg string, restMapper meta.RESTMapper) (*meta.RESTMapping, error) { // MODIFIED: args
fullySpecifiedGVR, groupResource := schema.ParseResourceArg(resourceOrKindArg)
gvk := schema.GroupVersionKind{}
// MODIFIED: Don't call b.restMapperFn(), use the mapper given as an argument.
if fullySpecifiedGVR != nil {
gvk, _ = restMapper.KindFor(*fullySpecifiedGVR)
}
if gvk.Empty() {
gvk, _ = restMapper.KindFor(groupResource.WithVersion(""))
}
if !gvk.Empty() {
return restMapper.RESTMapping(gvk.GroupKind(), gvk.Version)
}
fullySpecifiedGVK, groupKind := schema.ParseKindArg(resourceOrKindArg)
if fullySpecifiedGVK == nil {
gvk := groupKind.WithVersion("")
fullySpecifiedGVK = &gvk
}
if !fullySpecifiedGVK.Empty() {
if mapping, err := restMapper.RESTMapping(fullySpecifiedGVK.GroupKind(), fullySpecifiedGVK.Version); err == nil {
return mapping, nil
}
}
mapping, err := restMapper.RESTMapping(groupKind, gvk.Version)
if err != nil {
// if we error out here, it is because we could not match a resource or a kind
// for the given argument. To maintain consistency with previous behavior,
// announce that a resource type could not be found.
// if the error is _not_ a *meta.NoKindMatchError, then we had trouble doing discovery,
// so we should return the original error since it may help a user diagnose what is actually wrong
if meta.IsNoMatchError(err) {
return nil, fmt.Errorf("the server doesn't have a resource type %q", groupResource.Resource)
}
return nil, err
}
return mapping, nil
}
// List calls ListNamespace(...) with NamespaceAll.
func (c *Client) List(resource string) ([]Resource, error) {
return c.ListNamespace(NamespaceAll, resource)
}
// ListNamespace returns a slice of Resources.
// If the resource is not namespaced, the namespace must be NamespaceNone.
// If the resource is namespaced, NamespaceAll lists across all namespaces.
func (c *Client) ListNamespace(namespace, resource string) ([]Resource, error) {
return c.SelectiveList(namespace, resource, "", "")
}
func (c *Client) SelectiveList(namespace, resource, fieldSelector, labelSelector string) ([]Resource, error) {
return c.ListQuery(Query{
Kind: resource,
Namespace: namespace,
FieldSelector: fieldSelector,
LabelSelector: labelSelector,
})
}
// Query describes a query for a set of Kubernetes resources.
type Query struct {
// The Kind of a query may use any of the short names or abbreviations permitted by kubectl.
Kind string
// The Namespace field specifies the namespace to query. Use NamespaceAll to query all
// namespaces. If the resource type is not namespaced, this field must be NamespaceNone.
Namespace string
// The FieldSelector and LabelSelector fields contain field and label selectors as
// documented by kubectl.
FieldSelector string
LabelSelector string
resourceType ResourceType
}
func (q *Query) resolve(c *Client) error {
if q.resourceType != (ResourceType{}) {
return nil
}
rt, err := c.ResolveResourceType(q.Kind)
if err != nil {
return err
}
q.resourceType = rt
return nil
}
// ListQuery returns all the Kubernetes resources that satisfy the
// supplied query.
func (c *Client) ListQuery(query Query) ([]Resource, error) {
err := query.resolve(c)
if err != nil {
return nil, err
}
ri := query.resourceType
dyn, err := dynamic.NewForConfig(c.config)
if err != nil {
return nil, errors.Wrap(err, "failed to create dynamic context")
}
cli := dyn.Resource(schema.GroupVersionResource{
Group: ri.Group,
Version: ri.Version,
Resource: ri.Name,
})
var filtered dynamic.ResourceInterface
if ri.Namespaced && query.Namespace != "" {
filtered = cli.Namespace(query.Namespace)
} else {
filtered = cli
}
uns, err := filtered.List(context.TODO(), metav1.ListOptions{
FieldSelector: query.FieldSelector,
LabelSelector: query.LabelSelector,
})
if err != nil {
return nil, err
}
result := make([]Resource, len(uns.Items))
for idx, un := range uns.Items {
result[idx] = un.UnstructuredContent()
}
return result, nil
}