-
-
Notifications
You must be signed in to change notification settings - Fork 222
/
instance.go
732 lines (608 loc) · 23.3 KB
/
instance.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
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
package main
import (
"context"
"errors"
"fmt"
"net/http"
"path/filepath"
"strings"
"sync"
"time"
"github.com/lxc/lxd/lxd/cluster"
"github.com/lxc/lxd/lxd/db"
dbCluster "github.com/lxc/lxd/lxd/db/cluster"
"github.com/lxc/lxd/lxd/db/operationtype"
"github.com/lxc/lxd/lxd/instance"
"github.com/lxc/lxd/lxd/instance/instancetype"
"github.com/lxc/lxd/lxd/instance/operationlock"
"github.com/lxc/lxd/lxd/operations"
"github.com/lxc/lxd/lxd/project"
"github.com/lxc/lxd/lxd/revert"
"github.com/lxc/lxd/lxd/state"
storagePools "github.com/lxc/lxd/lxd/storage"
"github.com/lxc/lxd/lxd/task"
"github.com/lxc/lxd/shared"
"github.com/lxc/lxd/shared/api"
"github.com/lxc/lxd/shared/logger"
)
// Helper functions
// instanceCreateAsEmpty creates an empty instance.
func instanceCreateAsEmpty(s *state.State, args db.InstanceArgs) (instance.Instance, error) {
revert := revert.New()
defer revert.Fail()
// Create the instance record.
inst, instOp, cleanup, err := instance.CreateInternal(s, args, true)
if err != nil {
return nil, fmt.Errorf("Failed creating instance record: %w", err)
}
revert.Add(cleanup)
defer instOp.Done(err)
pool, err := storagePools.LoadByInstance(s, inst)
if err != nil {
return nil, fmt.Errorf("Failed loading instance storage pool: %w", err)
}
err = pool.CreateInstance(inst, nil)
if err != nil {
return nil, fmt.Errorf("Failed creating instance: %w", err)
}
revert.Add(func() { _ = inst.Delete(true) })
err = inst.UpdateBackupFile()
if err != nil {
return nil, err
}
revert.Success()
return inst, nil
}
// instanceImageTransfer transfers an image from another cluster node.
func instanceImageTransfer(s *state.State, r *http.Request, projectName string, hash string, nodeAddress string) error {
logger.Debugf("Transferring image %q from node %q", hash, nodeAddress)
client, err := cluster.Connect(nodeAddress, s.Endpoints.NetworkCert(), s.ServerCert(), r, false)
if err != nil {
return err
}
client = client.UseProject(projectName)
err = imageImportFromNode(filepath.Join(s.OS.VarDir, "images"), client, hash)
if err != nil {
return err
}
return nil
}
func ensureImageIsLocallyAvailable(s *state.State, r *http.Request, img *api.Image, projectName string, instanceType instancetype.Type) error {
// Check if the image is available locally or it's on another member.
// Ensure we are the only ones operating on this image. Otherwise another instance created at the same
// time may also arrive at the conclusion that the image doesn't exist on this cluster member and then
// think it needs to download the image and store the record in the database as well, which will lead to
// duplicate record errors.
unlock := imageOperationLock(img.Fingerprint)
defer unlock()
memberAddress, err := s.DB.Cluster.LocateImage(img.Fingerprint)
if err != nil {
return fmt.Errorf("Failed locating image %q: %w", img.Fingerprint, err)
}
if memberAddress != "" {
// The image is available from another node, let's try to import it.
err = instanceImageTransfer(s, r, projectName, img.Fingerprint, memberAddress)
if err != nil {
return fmt.Errorf("Failed transferring image %q from %q: %w", img.Fingerprint, memberAddress, err)
}
// As the image record already exists in the project, just add the node ID to the image.
err = s.DB.Cluster.AddImageToLocalNode(projectName, img.Fingerprint)
if err != nil {
return fmt.Errorf("Failed adding transferred image %q record to local cluster member: %w", img.Fingerprint, err)
}
}
return nil
}
// instanceCreateFromImage creates an instance from a rootfs image.
func instanceCreateFromImage(s *state.State, r *http.Request, img *api.Image, args db.InstanceArgs, op *operations.Operation) error {
revert := revert.New()
defer revert.Fail()
// Validate the type of the image matches the type of the instance.
imgType, err := instancetype.New(img.Type)
if err != nil {
return err
}
if imgType != args.Type {
return fmt.Errorf("Requested image's type %q doesn't match instance type %q", imgType, args.Type)
}
// Set the "image.*" keys.
if img.Properties != nil {
for k, v := range img.Properties {
args.Config[fmt.Sprintf("image.%s", k)] = v
}
}
// Set the BaseImage field (regardless of previous value).
args.BaseImage = img.Fingerprint
// Create the instance.
inst, instOp, cleanup, err := instance.CreateInternal(s, args, true)
if err != nil {
return fmt.Errorf("Failed creating instance record: %w", err)
}
revert.Add(cleanup)
defer instOp.Done(nil)
err = s.DB.Cluster.Transaction(context.TODO(), func(ctx context.Context, tx *db.ClusterTx) error {
err = tx.UpdateImageLastUseDate(ctx, args.Project, img.Fingerprint, time.Now().UTC())
if err != nil {
return fmt.Errorf("Error updating image last use date: %w", err)
}
return nil
})
if err != nil {
return err
}
pool, err := storagePools.LoadByInstance(s, inst)
if err != nil {
return fmt.Errorf("Failed loading instance storage pool: %w", err)
}
err = pool.CreateInstanceFromImage(inst, img.Fingerprint, op)
if err != nil {
return fmt.Errorf("Failed creating instance from image: %w", err)
}
revert.Add(func() { _ = inst.Delete(true) })
err = inst.UpdateBackupFile()
if err != nil {
return err
}
revert.Success()
return nil
}
func instanceRebuildFromImage(s *state.State, r *http.Request, inst instance.Instance, img *api.Image, op *operations.Operation) error {
// Validate the type of the image matches the type of the instance.
imgType, err := instancetype.New(img.Type)
if err != nil {
return err
}
if imgType != inst.Type() {
return fmt.Errorf("Requested image's type %q doesn't match instance type %q", imgType, inst.Type())
}
err = ensureImageIsLocallyAvailable(s, r, img, inst.Project().Name, inst.Type())
if err != nil {
return err
}
err = inst.Rebuild(img, op)
if err != nil {
return fmt.Errorf("Failed rebuilding instance from image: %w", err)
}
return nil
}
func instanceRebuildFromEmpty(s *state.State, inst instance.Instance, op *operations.Operation) error {
err := inst.Rebuild(nil, op) // Rebuild as empty.
if err != nil {
return fmt.Errorf("Failed rebuilding as an empty instance: %w", err)
}
return nil
}
// instanceCreateAsCopyOpts options for copying an instance.
type instanceCreateAsCopyOpts struct {
sourceInstance instance.Instance // Source instance.
targetInstance db.InstanceArgs // Configuration for new instance.
instanceOnly bool // Only copy the instance and not it's snapshots.
refresh bool // Refresh an existing target instance.
applyTemplateTrigger bool // Apply deferred TemplateTriggerCopy.
allowInconsistent bool // Ignore some copy errors
}
// instanceCreateAsCopy create a new instance by copying from an existing instance.
func instanceCreateAsCopy(s *state.State, opts instanceCreateAsCopyOpts, op *operations.Operation) (instance.Instance, error) {
var inst instance.Instance
var instOp *operationlock.InstanceOperation
var err error
var cleanup revert.Hook
revert := revert.New()
defer revert.Fail()
if opts.refresh {
// Load the target instance.
inst, err = instance.LoadByProjectAndName(s, opts.targetInstance.Project, opts.targetInstance.Name)
if err != nil {
opts.refresh = false // Instance doesn't exist, so switch to copy mode.
}
}
// If we are not in refresh mode, then create a new instance as we are in copy mode.
if !opts.refresh {
// Create the instance.
inst, instOp, cleanup, err = instance.CreateInternal(s, opts.targetInstance, true)
if err != nil {
return nil, fmt.Errorf("Failed creating instance record: %w", err)
}
revert.Add(cleanup)
} else {
instOp, err = inst.LockExclusive()
if err != nil {
return nil, fmt.Errorf("Failed getting exclusive access to target instance: %w", err)
}
}
defer instOp.Done(err)
// At this point we have already figured out the instance's root disk device so we can simply retrieve it
// from the expanded devices.
instRootDiskDeviceKey, instRootDiskDevice, err := shared.GetRootDiskDevice(inst.ExpandedDevices().CloneNative())
if err != nil {
return nil, err
}
var snapshots []instance.Instance
if !opts.instanceOnly {
if opts.refresh {
// Compare snapshots.
sourceSnaps, err := opts.sourceInstance.Snapshots()
if err != nil {
return nil, err
}
sourceSnapshotComparable := make([]storagePools.ComparableSnapshot, 0, len(sourceSnaps))
for _, sourceSnap := range sourceSnaps {
_, sourceSnapName, _ := api.GetParentAndSnapshotName(sourceSnap.Name())
sourceSnapshotComparable = append(sourceSnapshotComparable, storagePools.ComparableSnapshot{
Name: sourceSnapName,
CreationDate: sourceSnap.CreationDate(),
})
}
targetSnaps, err := inst.Snapshots()
if err != nil {
return nil, err
}
targetSnapshotsComparable := make([]storagePools.ComparableSnapshot, 0, len(targetSnaps))
for _, targetSnap := range targetSnaps {
_, targetSnapName, _ := api.GetParentAndSnapshotName(targetSnap.Name())
targetSnapshotsComparable = append(targetSnapshotsComparable, storagePools.ComparableSnapshot{
Name: targetSnapName,
CreationDate: targetSnap.CreationDate(),
})
}
syncSourceSnapshotIndexes, deleteTargetSnapshotIndexes := storagePools.CompareSnapshots(sourceSnapshotComparable, targetSnapshotsComparable)
// Delete extra snapshots first.
for _, deleteTargetSnapIndex := range deleteTargetSnapshotIndexes {
err := targetSnaps[deleteTargetSnapIndex].Delete(true)
if err != nil {
return nil, err
}
}
// Only send the snapshots that need updating.
snapshots = make([]instance.Instance, 0, len(syncSourceSnapshotIndexes))
for _, syncSourceSnapIndex := range syncSourceSnapshotIndexes {
snapshots = append(snapshots, sourceSnaps[syncSourceSnapIndex])
}
} else {
// Get snapshots of source instance.
snapshots, err = opts.sourceInstance.Snapshots()
if err != nil {
return nil, err
}
}
for _, srcSnap := range snapshots {
snapLocalDevices := srcSnap.LocalDevices().Clone()
// Load snap root disk from expanded devices (in case it doesn't have its own root disk).
snapExpandedRootDiskDevKey, snapExpandedRootDiskDev, err := shared.GetRootDiskDevice(srcSnap.ExpandedDevices().CloneNative())
if err == nil {
// If the expanded devices has a root disk, but its pool doesn't match our new
// parent instance's pool, then either modify the device if it is local or add a
// new one to local devices if its coming from the profiles.
if snapExpandedRootDiskDev["pool"] != instRootDiskDevice["pool"] {
localRootDiskDev, found := snapLocalDevices[snapExpandedRootDiskDevKey]
if found {
// Modify exist local device's pool.
localRootDiskDev["pool"] = instRootDiskDevice["pool"]
snapLocalDevices[snapExpandedRootDiskDevKey] = localRootDiskDev
} else {
// Add a new local device using parent instance's pool.
snapLocalDevices[instRootDiskDeviceKey] = map[string]string{
"type": "disk",
"path": "/",
"pool": instRootDiskDevice["pool"],
}
}
}
} else if errors.Is(err, shared.ErrNoRootDisk) {
// If no root disk defined in either local devices or profiles, then add one to the
// snapshot local devices using the same device name from the parent instance.
snapLocalDevices[instRootDiskDeviceKey] = map[string]string{
"type": "disk",
"path": "/",
"pool": instRootDiskDevice["pool"],
}
} else { //nolint:staticcheck // (keep the empty branch for the comment)
// Snapshot has multiple root disk devices, we can't automatically fix this so
// leave alone so we don't prevent copy.
}
fields := strings.SplitN(srcSnap.Name(), shared.SnapshotDelimiter, 2)
newSnapName := fmt.Sprintf("%s/%s", inst.Name(), fields[1])
snapInstArgs := db.InstanceArgs{
Architecture: srcSnap.Architecture(),
Config: srcSnap.LocalConfig(),
Type: opts.sourceInstance.Type(),
Snapshot: true,
Devices: snapLocalDevices,
Description: srcSnap.Description(),
Ephemeral: srcSnap.IsEphemeral(),
Name: newSnapName,
Profiles: srcSnap.Profiles(),
Project: opts.targetInstance.Project,
ExpiryDate: srcSnap.ExpiryDate(),
CreationDate: srcSnap.CreationDate(),
}
// Create the snapshots.
_, snapInstOp, cleanup, err := instance.CreateInternal(s, snapInstArgs, true)
if err != nil {
return nil, fmt.Errorf("Failed creating instance snapshot record %q: %w", newSnapName, err)
}
revert.Add(cleanup)
defer snapInstOp.Done(err)
}
}
// Copy the storage volume.
pool, err := storagePools.LoadByInstance(s, inst)
if err != nil {
return nil, fmt.Errorf("Failed loading instance storage pool: %w", err)
}
if opts.refresh {
err = pool.RefreshInstance(inst, opts.sourceInstance, snapshots, opts.allowInconsistent, op)
if err != nil {
return nil, fmt.Errorf("Refresh instance: %w", err)
}
} else {
err = pool.CreateInstanceFromCopy(inst, opts.sourceInstance, !opts.instanceOnly, opts.allowInconsistent, op)
if err != nil {
return nil, fmt.Errorf("Create instance from copy: %w", err)
}
revert.Add(func() { _ = inst.Delete(true) })
if opts.applyTemplateTrigger {
// Trigger the templates on next start.
err = inst.DeferTemplateApply(instance.TemplateTriggerCopy)
if err != nil {
return nil, err
}
}
}
err = inst.UpdateBackupFile()
if err != nil {
return nil, err
}
revert.Success()
return inst, nil
}
// Load all instances of this nodes under the given project.
func instanceLoadNodeProjectAll(ctx context.Context, s *state.State, project string, instanceType instancetype.Type) ([]instance.Instance, error) {
var err error
var instances []instance.Instance
filter := dbCluster.InstanceFilter{Type: instanceType.Filter(), Project: &project}
if s.ServerName != "" {
filter.Node = &s.ServerName
}
err = s.DB.Cluster.InstanceList(ctx, func(dbInst db.InstanceArgs, p api.Project) error {
inst, err := instance.Load(s, dbInst, p)
if err != nil {
return fmt.Errorf("Failed loading instance %q in project %q: %w", dbInst.Name, dbInst.Project, err)
}
instances = append(instances, inst)
return nil
}, filter)
if err != nil {
return nil, err
}
return instances, nil
}
func autoCreateInstanceSnapshots(ctx context.Context, s *state.State, instances []instance.Instance) error {
// Make the snapshots.
for _, inst := range instances {
err := ctx.Err()
if err != nil {
return err
}
l := logger.AddContext(logger.Ctx{"project": inst.Project().Name, "instance": inst.Name()})
snapshotName, err := instance.NextSnapshotName(s, inst, "snap%d")
if err != nil {
l.Error("Error retrieving next snapshot name", logger.Ctx{"err": err})
return err
}
expiry, err := shared.GetExpiry(time.Now(), inst.ExpandedConfig()["snapshots.expiry"])
if err != nil {
l.Error("Error getting snapshots.expiry date")
return err
}
err = inst.Snapshot(snapshotName, expiry, false)
if err != nil {
l.Error("Error creating snapshot", logger.Ctx{"snapshot": snapshotName, "err": err})
return err
}
}
return nil
}
var instSnapshotsPruneRunning = sync.Map{}
func pruneExpiredInstanceSnapshots(ctx context.Context, s *state.State, snapshots []instance.Instance) error {
// Find snapshots to delete
for _, snapshot := range snapshots {
err := ctx.Err()
if err != nil {
return err
}
_, loaded := instSnapshotsPruneRunning.LoadOrStore(snapshot.ID(), struct{}{})
if loaded {
continue // Deletion of this snapshot is already running, skip.
}
err = snapshot.Delete(true)
instSnapshotsPruneRunning.Delete(snapshot.ID())
if err != nil {
return fmt.Errorf("Failed to delete expired instance snapshot %q in project %q: %w", snapshot.Name(), snapshot.Project().Name, err)
}
logger.Debug("Deleted instance snapshot", logger.Ctx{"project": snapshot.Project().Name, "snapshot": snapshot.Name()})
}
return nil
}
func pruneExpiredAndAutoCreateInstanceSnapshotsTask(d *Daemon) (task.Func, task.Schedule) {
// `f` creates new scheduled instance snapshots and then, prune the expired ones
f := func(ctx context.Context) {
s := d.State()
var instances, expiredSnapshotInstances []instance.Instance
// Get list of expired instance snapshots for this local member.
err := s.DB.Cluster.Transaction(ctx, func(ctx context.Context, tx *db.ClusterTx) error {
expiredSnaps, err := tx.GetLocalExpiredInstanceSnapshots(ctx)
if err != nil {
return fmt.Errorf("Failed loading expired instance snapshots: %w", err)
}
if len(expiredSnaps) > 0 {
expiredSnapshots := make([]dbCluster.Instance, 0, len(expiredSnaps))
parents := make(map[string]*dbCluster.Instance, 0)
// Enrich expired snapshot list with info from parent (opportunistically loading
// the parent info from the DB if not already loaded).
for _, snapshot := range expiredSnaps {
parentInstanceKey := snapshot.Project + "/" + snapshot.Instance
parent, ok := parents[parentInstanceKey]
if !ok {
parent, err = dbCluster.GetInstance(ctx, tx.Tx(), snapshot.Project, snapshot.Instance)
if err != nil {
return fmt.Errorf("Failed loading instance %q (project %q): %w", snapshot.Instance, snapshot.Project, err)
}
parents[parentInstanceKey] = parent
}
expiredSnapshots = append(expiredSnapshots, snapshot.ToInstance(parent.Name, parent.Node, parent.Type, parent.Architecture))
}
// Load expired snapshot configs.
snapshotArgs, err := tx.InstancesToInstanceArgs(ctx, true, expiredSnapshots...)
if err != nil {
return fmt.Errorf("Failed loading expired instance snapshots info: %w", err)
}
projects := make(map[string]*api.Project)
expiredSnapshotInstances = make([]instance.Instance, 0)
for _, snapshotArg := range snapshotArgs {
// Load project if not already loaded.
p, found := projects[snapshotArg.Project]
if !found {
dbProject, err := dbCluster.GetProject(ctx, tx.Tx(), snapshotArg.Project)
if err != nil {
return fmt.Errorf("Failed loading project %q: %w", snapshotArg.Project, err)
}
p, err = dbProject.ToAPI(ctx, tx.Tx())
if err != nil {
return fmt.Errorf("Failed loading project %q config: %w", snapshotArg.Project, err)
}
projects[snapshotArg.Project] = p
}
inst, err := instance.Load(s, snapshotArg, *p)
if err != nil {
return fmt.Errorf("Failed loading instance snapshot %q (project %q) for prune task: %w", snapshotArg.Name, snapshotArg.Project, err)
}
logger.Debug("Scheduling instance snapshot expiry", logger.Ctx{"instance": inst.Name(), "project": inst.Project().Name})
expiredSnapshotInstances = append(expiredSnapshotInstances, inst)
}
}
return nil
})
if err != nil {
logger.Error("Failed getting instance snapshot expiry info", logger.Ctx{"err": err})
return
}
// Get list of instances on the local member that are due to have snaphots creating.
filter := dbCluster.InstanceFilter{Node: &s.ServerName}
err = s.DB.Cluster.InstanceList(ctx, func(dbInst db.InstanceArgs, p api.Project) error {
err = project.AllowSnapshotCreation(&p)
if err != nil {
return nil
}
inst, err := instance.Load(s, dbInst, p)
if err != nil {
return fmt.Errorf("Failed loading instance %q (project %q) for snapshot task: %w", dbInst.Name, dbInst.Project, err)
}
// Check if instance has snapshot schedule enabled.
schedule, ok := inst.ExpandedConfig()["snapshots.schedule"]
if !ok || schedule == "" {
return nil
}
// Check if snapshot is scheduled.
if !snapshotIsScheduledNow(schedule, int64(inst.ID())) {
return nil
}
// If snapshot should only be taken if instance is running, check if running.
if shared.IsFalseOrEmpty(inst.ExpandedConfig()["snapshots.schedule.stopped"]) && !inst.IsRunning() {
return nil
}
logger.Debug("Scheduling auto instance snapshot", logger.Ctx{"instance": inst.Name(), "project": inst.Project().Name})
instances = append(instances, inst)
return nil
}, filter)
if err != nil {
logger.Error("Failed getting instance snapshot schedule info", logger.Ctx{"err": err})
return
}
// Handle snapshot expiry first before creating new ones to reduce the chances of running out of
// disk space.
if len(expiredSnapshotInstances) > 0 {
opRun := func(op *operations.Operation) error {
return pruneExpiredInstanceSnapshots(ctx, s, expiredSnapshotInstances)
}
op, err := operations.OperationCreate(s, "", operations.OperationClassTask, operationtype.SnapshotsExpire, nil, nil, opRun, nil, nil, nil)
if err != nil {
logger.Error("Failed creating instance snapshots expiry operation", logger.Ctx{"err": err})
} else {
logger.Info("Pruning expired instance snapshots")
err = op.Start()
if err != nil {
logger.Error("Failed starting instance snapshots expiry operation", logger.Ctx{"err": err})
} else {
err = op.Wait(ctx)
if err != nil {
logger.Error("Failed pruning instance snapshots", logger.Ctx{"err": err})
} else {
logger.Info("Done pruning expired instance snapshots")
}
}
}
}
// Handle snapshot auto creation.
if len(instances) > 0 {
opRun := func(op *operations.Operation) error {
return autoCreateInstanceSnapshots(ctx, s, instances)
}
op, err := operations.OperationCreate(s, "", operations.OperationClassTask, operationtype.SnapshotCreate, nil, nil, opRun, nil, nil, nil)
if err != nil {
logger.Error("Failed creating scheduled instance snapshot operation", logger.Ctx{"err": err})
} else {
logger.Info("Creating scheduled instance snapshots")
err = op.Start()
if err != nil {
logger.Error("Failed starting scheduled instance snapshot operation", logger.Ctx{"err": err})
} else {
err = op.Wait(ctx)
if err != nil {
logger.Error("Failed scheduled instance snapshots", logger.Ctx{"err": err})
} else {
logger.Info("Done creating scheduled instance snapshots")
}
}
}
}
}
first := true
schedule := func() (time.Duration, error) {
interval := time.Minute
if first {
first = false
return interval, task.ErrSkip
}
return interval, nil
}
return f, schedule
}
// getSourceImageFromInstanceSource returns the image to use for an instance source.
func getSourceImageFromInstanceSource(ctx context.Context, s *state.State, tx *db.ClusterTx, project string, source api.InstanceSource, imageRef *string, instType string) (*api.Image, error) {
// Resolve the image.
sourceImageRefUpdate, err := instance.ResolveImage(ctx, tx, project, source)
if err != nil {
return nil, err
}
*imageRef = sourceImageRefUpdate
sourceImageHash := *imageRef
// If a remote server is being used, check whether we have a cached image for the alias.
// If so then use the cached image fingerprint for loading the cache image profiles.
// As its possible for a remote cached image to have its profiles modified after download.
if source.Server != "" {
for _, architecture := range s.OS.Architectures {
cachedFingerprint, err := tx.GetCachedImageSourceFingerprint(ctx, source.Server, source.Protocol, *imageRef, instType, architecture)
if err == nil && cachedFingerprint != sourceImageHash {
sourceImageHash = cachedFingerprint
break
}
}
}
// Check if image has an entry in the database.
_, sourceImage, err := tx.GetImageByFingerprintPrefix(ctx, sourceImageHash, dbCluster.ImageFilter{Project: &project})
if err != nil {
return nil, err
}
return sourceImage, nil
}