-
Notifications
You must be signed in to change notification settings - Fork 0
/
restore.go
398 lines (354 loc) · 10.7 KB
/
restore.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
385
386
387
388
389
390
391
392
393
394
395
396
397
398
package cluster
import (
"archive/tar"
"compress/gzip"
"context"
"io"
"io/ioutil"
"os"
"path/filepath"
"strings"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
"k8s.io/apimachinery/pkg/runtime/schema"
"k8s.io/client-go/dynamic"
"k8s.io/client-go/kubernetes"
"k8s.io/klog"
cbv1alpha1 "github.com/ryo-watanabe/k8s-snap/pkg/apis/clustersnapshot/v1alpha1"
"github.com/ryo-watanabe/k8s-snap/pkg/objectstore"
"github.com/ryo-watanabe/k8s-snap/pkg/utils"
)
func loadItem(item *unstructured.Unstructured, fpath string) error {
bytes, err := ioutil.ReadFile(filepath.Clean(fpath))
if err != nil {
return err
}
err = item.UnmarshalJSON(bytes)
if err != nil {
return err
}
return nil
}
// Create resource
func createItem(ctx context.Context, item *unstructured.Unstructured,
dyn dynamic.Interface, sr *ServerResources) (*unstructured.Unstructured, error) {
gv, err := schema.ParseGroupVersion(item.GetAPIVersion())
if err != nil {
return nil, err
}
resource, err := sr.ResourceName(gv.WithKind(item.GetKind()))
if err != nil {
return nil, err
}
gvr := gv.WithResource(resource)
ns := item.GetNamespace()
if ns == "" {
return dyn.Resource(gvr).Create(ctx, item, metav1.CreateOptions{})
}
return dyn.Resource(gvr).Namespace(ns).Create(ctx, item, metav1.CreateOptions{})
}
func excludeWithMsg(restore *cbv1alpha1.Restore, rlog *utils.NamedLog, selflink, msg string) {
rlog.Infof(" [Excluded] %s", msg)
restore.Status.NumExcluded++
restore.Status.Excluded = append(restore.Status.Excluded, selflink+",("+msg+")")
}
func alreadyExist(restore *cbv1alpha1.Restore, rlog *utils.NamedLog, selflink string) {
rlog.Info(" [Already exists]")
restore.Status.NumAlreadyExisted++
restore.Status.AlreadyExisted = append(restore.Status.AlreadyExisted, selflink)
}
func created(restore *cbv1alpha1.Restore, rlog *utils.NamedLog, selflink string) {
rlog.Info(" [Created]")
restore.Status.NumCreated++
restore.Status.Created = append(restore.Status.Created, selflink)
}
func failedWithMsg(restore *cbv1alpha1.Restore, rlog *utils.NamedLog, selflink, msg string) {
rlog.Warningf(" [Failed] %s", msg)
restore.Status.NumFailed++
if len(msg) > 300 {
restore.Status.Failed = append(restore.Status.Failed, selflink+","+msg[0:300]+".....")
} else {
restore.Status.Failed = append(restore.Status.Failed, selflink+","+msg)
}
}
// Restore resources according to preferences.
func restoreDir(ctx context.Context, dir, restorePref string, dyn dynamic.Interface, p *preference,
restore *cbv1alpha1.Restore, sr *ServerResources, rlog *utils.NamedLog) error {
files, err := ioutil.ReadDir(filepath.Join(dir, restorePref))
if err != nil {
return err
}
for _, f := range files {
// Load item
var item unstructured.Unstructured
err := loadItem(&item, filepath.Join(dir, restorePref, f.Name()))
if err != nil {
return err
}
resourcePath, err := sr.ResourcePath(&item)
if err != nil {
return err
}
rlog.Infof("---- %s", resourcePath)
// Check owner
owners := item.GetOwnerReferences()
if len(owners) > 0 {
excludeWithMsg(restore, rlog, resourcePath, "owner-ref")
for _, owner := range owners {
rlog.Infof(" owner : %s %s", owner.Kind, owner.Name)
}
continue
}
// Operation for each resources
switch item.GetKind() {
case "Secret":
if getUnstructuredString(item.Object, "type") == "kubernetes.io/service-account-token" {
excludeWithMsg(restore, rlog, resourcePath, "token-secret")
continue
}
case "ClusterRole":
if !isInList(item.GetName(), p.includedClusterRoles) {
excludeWithMsg(restore, rlog, resourcePath, "not-binded-to-ns")
continue
}
case "ClusterRoleBinding":
if !isInList(item.GetName(), p.includedClusterRoleBindings) {
excludeWithMsg(restore, rlog, resourcePath, "not-binded-to-ns")
continue
}
case "PersistentVolume":
case "PersistentVolumeClaim":
klog.Warningf(" Warning : Excluded : PVs/PVCs must not be included here")
continue
case "Endpoints":
if isInList(item.GetNamespace()+"/"+item.GetName(), p.serviceList) {
excludeWithMsg(restore, rlog, resourcePath, "service-exists")
continue
}
}
// Restore item
item.SetResourceVersion("")
item.SetUID("")
_, err = createItem(ctx, &item, dyn, sr)
if err != nil {
//p.cntUpCnnotRestore(err.Error())
if strings.Contains(err.Error(), "already exists") {
alreadyExist(restore, rlog, resourcePath)
} else {
failedWithMsg(restore, rlog, resourcePath, err.Error())
}
} else {
created(restore, rlog, resourcePath)
}
}
return nil
}
// create a file
func writeFile(filepath string, tarReader *tar.Reader) error {
file, err := os.Create(filepath)
if err != nil {
return err
}
defer func() { _ = file.Close() }()
if _, err := io.Copy(file, tarReader); err != nil {
return err
}
return nil
}
// Restore k8s resources
func Restore(restore *cbv1alpha1.Restore, pref *cbv1alpha1.RestorePreference, bucket objectstore.Objectstore) error {
// download snapshot tgz
err := downloadSnapshot(restore, bucket)
if err != nil {
return err
}
// kubeClient for external cluster.
kubeClient, err := buildKubeClient(restore.Spec.Kubeconfig)
if err != nil {
return err
}
// DynamicClient for external cluster.
dynamicClient, err := buildDynamicClient(restore.Spec.Kubeconfig)
if err != nil {
return err
}
return restoreResources(restore, pref, kubeClient, dynamicClient)
}
func downloadSnapshot(restore *cbv1alpha1.Restore, bucket objectstore.Objectstore) error {
// Restore log
rlog := utils.NewNamedLog("restore:" + restore.ObjectMeta.Name)
// Download
rlog.Infof("Downloading file %s", restore.Spec.SnapshotName+".tgz")
snapshotFile, err := os.Create("/tmp/" + restore.Spec.SnapshotName + ".tgz")
defer func() { _ = snapshotFile.Close() }()
if err != nil {
return err
}
return bucket.Download(snapshotFile, restore.Spec.SnapshotName+".tgz")
}
func restoreResources(
restore *cbv1alpha1.Restore,
pref *cbv1alpha1.RestorePreference,
kubeClient kubernetes.Interface,
dynamicClient dynamic.Interface) error {
// context for restore
ctx := context.TODO()
// Restore log
rlog := utils.NewNamedLog("restore:" + restore.ObjectMeta.Name)
// Server Resources
discoveryClient := kubeClient.Discovery()
_, spr, err := discoveryClient.ServerGroupsAndResources()
if err != nil {
return err
}
sr := newServerResources(spr)
p := newPreference(pref)
// Initialize restore status
restore.Status.NumPreferenceExcluded = 0
restore.Status.NumExcluded = 0
restore.Status.NumCreated = 0
restore.Status.NumUpdated = 0
restore.Status.NumAlreadyExisted = 0
restore.Status.NumFailed = 0
restore.Status.Excluded = nil
restore.Status.Created = nil
restore.Status.Updated = nil
restore.Status.AlreadyExisted = nil
restore.Status.Failed = nil
// Read tar.gz
snapshotFile, err := os.Open("/tmp/" + restore.Spec.SnapshotName + ".tgz")
if err != nil {
return err
}
tgz, err := gzip.NewReader(snapshotFile)
if err != nil {
return err
}
defer func() { _ = tgz.Close() }()
tarReader := tar.NewReader(tgz)
dir, err := ioutil.TempDir("", "")
if err != nil {
return err
}
rlog.Info("Extract files in snapshot tgz :")
for {
header, err := tarReader.Next()
if err == io.EOF {
break
}
if err != nil {
return err
}
if header.Typeflag == tar.TypeReg {
path := strings.Replace(header.Name, restore.Spec.SnapshotName, "", 1)
if path == "/snapshot.json" {
klog.Infof("-- [Snapshot resource file] %s", path)
continue
}
restorePref := p.preferedToRestore(path)
if restorePref == "Exclude" {
rlog.Infof("-- [%s] %s", restorePref, path)
//p.cntUpExcluded()
restore.Status.NumPreferenceExcluded++
continue
}
// create dir
fullpath := filepath.Join(dir, restorePref, strings.Replace(path, "/", "|", -1))
err := os.MkdirAll(filepath.Dir(fullpath), header.FileInfo().Mode())
if err != nil {
return err
}
// create file
err = writeFile(fullpath, tarReader)
if err != nil {
return err
}
}
}
// Initialize preference
err = p.initializeByDir(dir)
if err != nil {
return err
}
// Restore namespaces
if p.isIn("Namespace") {
rlog.Info("Restore Namespaces :")
err = restoreDir(ctx, dir, "Namespace", dynamicClient, p, restore, sr, rlog)
if err != nil {
return err
}
}
// Restore CRDs
if p.isIn("CRD") {
rlog.Info("Restore CRDs :")
err = restoreDir(ctx, dir, "CRD", dynamicClient, p, restore, sr, rlog)
if err != nil {
return err
}
}
// Reload Server Resources after CRDs restored
_, spr, err = discoveryClient.ServerGroupsAndResources()
if err != nil {
return err
}
sr = newServerResources(spr)
// Restore PV/PVC
if p.isIn("PV") && p.isIn("PVC") {
rlog.Info("Restore PV/PVC :")
err = restorePV(ctx, dir, dynamicClient, p, restore, sr, rlog)
if err != nil {
return err
}
}
// Other resources
if p.isIn("Restore") {
rlog.Info("Restore resources except Apps :")
err = restoreDir(ctx, dir, "Restore", dynamicClient, p, restore, sr, rlog)
if err != nil {
return err
}
}
// Restore apps
if p.isIn("App") {
rlog.Info("Restore Apps :")
err = restoreDir(ctx, dir, "App", dynamicClient, p, restore, sr, rlog)
if err != nil {
return err
}
}
// Remove tmp files
err = os.RemoveAll(dir)
if err != nil {
return err
}
// Generate marker name
markerName := "resource-version-marker-" + utils.RandString(10)
// Get end resource version
marker, err := ConfigMapMarker(ctx, kubeClient, markerName)
if err != nil {
return err
}
// Timestamp and resource version
restore.Status.RestoreTimestamp = marker.ObjectMeta.CreationTimestamp
// Set expiration
if restore.Spec.AvailableUntil.IsZero() {
restore.Status.AvailableUntil = metav1.NewTime(marker.ObjectMeta.CreationTimestamp.Add(restore.Spec.TTL.Duration))
restore.Status.TTL = restore.Spec.TTL
} else {
restore.Status.AvailableUntil = restore.Spec.AvailableUntil
restore.Status.TTL.Duration = restore.Status.AvailableUntil.Time.Sub(restore.Status.RestoreTimestamp.Time)
}
restore.Status.RestoreResourceVersion = marker.ObjectMeta.ResourceVersion
// result
rlog.Info("Restore completed")
rlog.Infof("-- resource version : %s", restore.Status.RestoreResourceVersion)
rlog.Infof("-- timestamp : %s", restore.Status.RestoreTimestamp)
rlog.Infof("-- available until : %s", restore.Status.AvailableUntil)
rlog.Infof("-- preference excluded : %d", restore.Status.NumPreferenceExcluded)
rlog.Infof("-- excluded : %d", restore.Status.NumExcluded)
rlog.Infof("-- created : %d", restore.Status.NumCreated)
rlog.Infof("-- updated : %d", restore.Status.NumUpdated)
rlog.Infof("-- already existed : %d", restore.Status.NumAlreadyExisted)
rlog.Infof("-- failed : %d", restore.Status.NumFailed)
return nil
}