-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
patch.go
284 lines (246 loc) · 9.7 KB
/
patch.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
/*
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 patch
import (
"context"
"encoding/json"
"reflect"
"time"
"github.com/pkg/errors"
apierrors "k8s.io/apimachinery/pkg/api/errors"
"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
"k8s.io/apimachinery/pkg/runtime"
kerrors "k8s.io/apimachinery/pkg/util/errors"
"k8s.io/apimachinery/pkg/util/wait"
clusterv1 "sigs.k8s.io/cluster-api/api/v1alpha3"
"sigs.k8s.io/cluster-api/util/conditions"
"sigs.k8s.io/controller-runtime/pkg/client"
)
// Helper is a utility for ensuring the proper patching of objects.
type Helper struct {
client client.Client
beforeObject runtime.Object
before *unstructured.Unstructured
after *unstructured.Unstructured
changes map[string]bool
isConditionsSetter bool
}
// NewHelper returns an initialized Helper
func NewHelper(obj runtime.Object, crClient client.Client) (*Helper, error) {
// Return early if the object is nil.
// If you're wondering why we need reflection to do this check, see https://golang.org/doc/faq#nil_error.
// TODO(vincepri): Remove this check and let it panic if used improperly in a future minor release.
if obj == nil || (reflect.ValueOf(obj).IsValid() && reflect.ValueOf(obj).IsNil()) {
return nil, errors.Errorf("expected non-nil object")
}
// Convert the object to unstructured to compare against our before copy.
unstructuredObj, err := toUnstructured(obj)
if err != nil {
return nil, err
}
// Check if the object satisfies the Cluster API conditions contract.
_, canInterfaceConditions := obj.(conditions.Setter)
return &Helper{
client: crClient,
before: unstructuredObj,
beforeObject: obj.DeepCopyObject(),
isConditionsSetter: canInterfaceConditions,
}, nil
}
// Patch will attempt to patch the given object, including its status.
func (h *Helper) Patch(ctx context.Context, obj runtime.Object, opts ...Option) error {
if obj == nil {
return errors.Errorf("expected non-nil object")
}
// Calculate the options.
options := &HelperOptions{}
for _, opt := range opts {
opt.ApplyToHelper(options)
}
// Convert the object to unstructured to compare against our before copy.
var err error
h.after, err = toUnstructured(obj)
if err != nil {
return err
}
// Determine if the object has status.
if unstructuredHasStatus(h.after) {
if options.IncludeStatusObservedGeneration {
// Set status.observedGeneration if we're asked to do so.
if err := unstructured.SetNestedField(h.after.Object, h.after.GetGeneration(), "status", "observedGeneration"); err != nil {
return err
}
// Restore the changes back to the original object.
if err := runtime.DefaultUnstructuredConverter.FromUnstructured(h.after.Object, obj); err != nil {
return err
}
}
}
// Calculate and store the top-level field changes (e.g. "metadata", "spec", "status") we have before/after.
h.changes, err = h.calculateChanges(obj)
if err != nil {
return err
}
// Issue patches and return errors in an aggregate.
return kerrors.NewAggregate([]error{
// Patch the conditions first.
//
// Given that we pass in metadata.resourceVersion to perform a 3-way-merge conflict resolution,
// patching conditions first avoids an extra loop if spec or status patch succeeds first
// given that causes the resourceVersion to mutate.
h.patchStatusConditions(ctx, obj, options.ForceOverwriteConditions, options.OwnedConditions),
// Then proceed to patch the rest of the object.
h.patch(ctx, obj),
h.patchStatus(ctx, obj),
})
}
// patch issues a patch for metadata and spec.
func (h *Helper) patch(ctx context.Context, obj runtime.Object) error {
if !h.shouldPatch("metadata") && !h.shouldPatch("spec") {
return nil
}
beforeObject, afterObject, err := h.calculatePatch(obj, specPatch)
if err != nil {
return err
}
return h.client.Patch(ctx, afterObject, client.MergeFrom(beforeObject))
}
// patchStatus issues a patch if the status has changed.
func (h *Helper) patchStatus(ctx context.Context, obj runtime.Object) error {
if !h.shouldPatch("status") {
return nil
}
beforeObject, afterObject, err := h.calculatePatch(obj, statusPatch)
if err != nil {
return err
}
return h.client.Status().Patch(ctx, afterObject, client.MergeFrom(beforeObject))
}
// patchStatusConditions issues a patch if there are any changes to the conditions slice under
// the status subresource. This is a special case and it's handled separately given that
// we allow different controllers to act on conditions of the same object.
//
// This method has an internal backoff loop. When a conflict is detected, the method
// asks the Client for the a new version of the object we're trying to patch.
//
// Condition changes are then applied to the latest version of the object, and if there are
// no unresolvable conflicts, the patch is sent again.
func (h *Helper) patchStatusConditions(ctx context.Context, obj runtime.Object, forceOverwrite bool, ownedConditions []clusterv1.ConditionType) error {
// Nothing to do if the object isn't a condition patcher.
if !h.isConditionsSetter {
return nil
}
// Make sure our before/after objects satisfy the proper interface before continuing.
//
// NOTE: The checks and error below are done so that we don't panic if any of the objects don't satisfy the
// interface any longer, although this shouldn't happen because we already check when creating the patcher.
before, ok := h.beforeObject.(conditions.Getter)
if !ok {
return errors.Errorf("object %s doesn't satisfy conditions.Getter, cannot patch", before.GetObjectKind())
}
after, ok := obj.(conditions.Getter)
if !ok {
return errors.Errorf("object %s doesn't satisfy conditions.Getter, cannot patch", after.GetObjectKind())
}
// Store the diff from the before/after object, and return early if there are no changes.
diff := conditions.NewPatch(
before,
after,
)
if diff.IsZero() {
return nil
}
// Make a copy of the object and store the key used if we have conflicts.
key, err := client.ObjectKeyFromObject(after)
if err != nil {
return err
}
// Define and start a backoff loop to handle conflicts
// between controllers working on the same object.
//
// This has been copied from https://github.com/kubernetes/kubernetes/blob/release-1.16/pkg/controller/controller_utils.go#L86-L88.
backoff := wait.Backoff{
Steps: 5,
Duration: 100 * time.Millisecond,
Jitter: 1.0,
}
// Start the backoff loop and return errors if any.
return wait.ExponentialBackoff(backoff, func() (bool, error) {
latest, ok := before.DeepCopyObject().(conditions.Setter)
if !ok {
return false, errors.Errorf("object %s doesn't satisfy conditions.Setter, cannot patch", latest.GetObjectKind())
}
// Get a new copy of the object.
if err := h.client.Get(ctx, key, latest); err != nil {
return false, err
}
// Create the condition patch before merging conditions.
conditionsPatch := client.MergeFromWithOptions(latest.DeepCopyObject(), client.MergeFromWithOptimisticLock{})
// Set the condition patch previously created on the new object.
if err := diff.Apply(latest, conditions.WithForceOverwrite(forceOverwrite), conditions.WithOwnedConditions(ownedConditions...)); err != nil {
return false, err
}
// Issue the patch.
err := h.client.Status().Patch(ctx, latest, conditionsPatch)
switch {
case apierrors.IsConflict(err):
// Requeue.
return false, nil
case err != nil:
return false, err
default:
return true, nil
}
})
}
// calculatePatch returns the before/after objects to be given in a controller-runtime patch, scoped down to the absolute necessary.
func (h *Helper) calculatePatch(afterObj runtime.Object, focus patchType) (runtime.Object, runtime.Object, error) {
// Get a shallow unsafe copy of the before/after object in unstructured form.
before := unsafeUnstructuredCopy(h.before, focus, h.isConditionsSetter)
after := unsafeUnstructuredCopy(h.after, focus, h.isConditionsSetter)
// We've now applied all modifications to local unstructured objects,
// make copies of the original objects and convert them back.
beforeObj := h.beforeObject.DeepCopyObject()
if err := runtime.DefaultUnstructuredConverter.FromUnstructured(before.Object, beforeObj); err != nil {
return nil, nil, err
}
afterObj = afterObj.DeepCopyObject()
if err := runtime.DefaultUnstructuredConverter.FromUnstructured(after.Object, afterObj); err != nil {
return nil, nil, err
}
return beforeObj, afterObj, nil
}
func (h *Helper) shouldPatch(in string) bool {
return h.changes[in]
}
// calculate changes tries to build a patch from the before/after objects we have
// and store in a map which top-level fields (e.g. `metadata`, `spec`, `status`, etc.) have changed.
func (h *Helper) calculateChanges(after runtime.Object) (map[string]bool, error) {
// Calculate patch data.
patch := client.MergeFrom(h.beforeObject)
diff, err := patch.Data(after)
if err != nil {
return nil, errors.Wrapf(err, "failed to calculate patch data")
}
// Unmarshal patch data into a local map.
patchDiff := map[string]interface{}{}
if err := json.Unmarshal(diff, &patchDiff); err != nil {
return nil, errors.Wrapf(err, "failed to unmarshal patch data into a map")
}
// Return the map.
res := make(map[string]bool, len(patchDiff))
for key := range patchDiff {
res[key] = true
}
return res, nil
}