-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclient.go
187 lines (170 loc) · 5.6 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
package kool
import (
"context"
"net/http"
"time"
corev1 "k8s.io/api/core/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/runtime/schema"
"k8s.io/apimachinery/pkg/types"
"k8s.io/apimachinery/pkg/watch"
"k8s.io/client-go/rest"
"k8s.io/kubectl/pkg/scheme"
)
type Client[T any] interface {
Create(ctx context.Context, item *T, opts metav1.CreateOptions) (*T, error)
Update(ctx context.Context, name string, item *T, opts metav1.UpdateOptions) (*T, error)
UpdateStatus(ctx context.Context, name string, item *T, opts metav1.UpdateOptions) (*T, error)
Delete(ctx context.Context, name string, opts metav1.DeleteOptions) error
DeleteCollection(ctx context.Context, opts metav1.DeleteOptions, listOpts metav1.ListOptions) error
Get(ctx context.Context, name string, opts metav1.GetOptions) (*T, error)
List(ctx context.Context, opts metav1.ListOptions) (*List[T], error)
Watch(ctx context.Context, opts metav1.ListOptions) (watch.Interface, error)
Patch(ctx context.Context, name string, pt types.PatchType, data []byte, opts metav1.PatchOptions, subresources ...string) (result *T, err error)
}
type ClientWithApply[T, ApplyConfiguration any] interface {
Client[T]
Apply(ctx context.Context, ac *ApplyConfiguration, opts metav1.ApplyOptions) (result *T, err error)
ApplyStatus(ctx context.Context, ac *ApplyConfiguration, opts metav1.ApplyOptions) (result *T, err error)
}
// NewRESTClient creates a new RESTClient for the given config.
// This client can only be used to interact with the given group version.
func NewRESTClient(config *rest.Config, httpClient *http.Client, gv *schema.GroupVersion) (*rest.RESTClient, error) {
configCopy := *config
configCopy.GroupVersion = gv
configCopy.APIPath = "/apis"
if len(gv.Group) == 0 {
// don't ask me why this is different from other groups
configCopy.APIPath = "/api"
}
configCopy.NegotiatedSerializer = scheme.Codecs.WithoutConversion()
if configCopy.UserAgent == "" {
configCopy.UserAgent = rest.DefaultKubernetesUserAgent()
}
return rest.RESTClientForConfigAndClient(&configCopy, httpClient)
}
type restClient[T any] struct {
client *rest.RESTClient
ns string
resource string
}
func NewTypedClient[T any](client *rest.RESTClient, ns, resource string) Client[T] {
mustBeRuntimeObject(new(T))
return &restClient[T]{
client: client,
ns: ns,
resource: resource,
}
}
func (c *restClient[T]) Create(ctx context.Context, item *T, opts metav1.CreateOptions) (result *T, err error) {
result = new(T)
err = c.client.Post().
Namespace(c.ns).
Resource(c.resource).
VersionedParams(&opts, scheme.ParameterCodec).
Body(item).
Do(ctx).
Into(mustBeRuntimeObject(result))
return
}
func (c *restClient[T]) Update(ctx context.Context, name string, item *T, opts metav1.UpdateOptions) (result *T, err error) {
result = new(T)
err = c.client.Put().
Namespace(c.ns).
Resource(c.resource).
Name(name).
VersionedParams(&opts, scheme.ParameterCodec).
Body(item).
Do(ctx).
Into(mustBeRuntimeObject(result))
return
}
func (c *restClient[T]) UpdateStatus(ctx context.Context, name string, item *T, opts metav1.UpdateOptions) (result *T, err error) {
result = new(T)
err = c.client.Put().
Namespace(c.ns).
Resource(c.resource).
Name(name).
SubResource("status").
VersionedParams(&opts, scheme.ParameterCodec).
Body(item).
Do(ctx).
Into(mustBeRuntimeObject(result))
return
}
func (c *restClient[T]) Delete(ctx context.Context, name string, opts metav1.DeleteOptions) error {
return c.client.Delete().
Namespace(c.ns).
Resource(c.resource).
Name(name).
Body(&opts).
Do(ctx).
Error()
}
func (c *restClient[T]) DeleteCollection(ctx context.Context, opts metav1.DeleteOptions, listOpts metav1.ListOptions) error {
var timeout time.Duration
if listOpts.TimeoutSeconds != nil {
timeout = MultiplyDuration(time.Second, *listOpts.TimeoutSeconds)
}
return c.client.Delete().
Namespace(c.ns).
Resource(c.resource).
VersionedParams(&listOpts, scheme.ParameterCodec).
Timeout(timeout).
Body(&opts).
Do(ctx).
Error()
}
func (c *restClient[T]) Get(ctx context.Context, name string, opts metav1.GetOptions) (result *T, err error) {
result = new(T)
err = c.client.Get().
Namespace(c.ns).
Resource(c.resource).
Name(name).
VersionedParams(&opts, scheme.ParameterCodec).
Do(ctx).
Into(mustBeRuntimeObject(result))
return
}
func (c *restClient[T]) List(ctx context.Context, opts metav1.ListOptions) (result *List[T], err error) {
var timeout time.Duration
if opts.TimeoutSeconds != nil {
timeout = MultiplyDuration(time.Second, *opts.TimeoutSeconds)
}
result = &List[T]{}
err = c.client.Get().
Namespace(c.ns).
Resource(c.resource).
VersionedParams(&opts, scheme.ParameterCodec).
Timeout(timeout).
Do(ctx).
Into(result)
return
}
func (c *restClient[T]) Watch(ctx context.Context, opts metav1.ListOptions) (watch.Interface, error) {
var timeout time.Duration
if opts.TimeoutSeconds != nil {
timeout = MultiplyDuration(time.Second, *opts.TimeoutSeconds)
}
opts.Watch = true
return c.client.Get().
Namespace(c.ns).
Resource(c.resource).
VersionedParams(&opts, scheme.ParameterCodec).
Timeout(timeout).
Watch(ctx)
}
func (c *restClient[T]) Patch(ctx context.Context, name string, pt types.PatchType, data []byte, opts metav1.PatchOptions, subresources ...string) (result *T, err error) {
result = new(T)
err = c.client.Patch(pt).
Namespace(c.ns).
Resource(c.resource).
Name(name).
SubResource(subresources...).
VersionedParams(&opts, scheme.ParameterCodec).
Body(data).
Do(ctx).
Into(mustBeRuntimeObject(result))
return
}
var _ Client[corev1.Pod] = &restClient[corev1.Pod]{}