@@ -199,17 +199,10 @@ func preStart(exp *types.Experiment) error {
199
199
200
200
cluster := cluster (exp )
201
201
202
- for _ , host := range app .Hosts () {
203
- cfg , ok := status .Mirrors [host .Hostname ()]
204
- if ! ok {
205
- continue
206
- }
207
-
208
- name := cfg .MirrorName
209
-
202
+ for _ , cfg := range status .Mirrors {
210
203
// Ignoring errors here since in most cases all the mirrors would have
211
204
// already been removed when the previous experiment was stopped.
212
- deleteMirror (name , amd .MirrorBridge , cluster )
205
+ deleteMirror (cfg . MirrorName , cfg .MirrorBridge , cluster )
213
206
}
214
207
215
208
// Ignoring errors here since in most cases all the taps would have already
@@ -252,7 +245,7 @@ func postStart(exp *types.Experiment) (ferr error) {
252
245
253
246
// clean up any mirrors already created for this mirror
254
247
for _ , mirror := range status .Mirrors {
255
- deleteMirror (mirror .MirrorName , amd .MirrorBridge , cluster )
248
+ deleteMirror (mirror .MirrorName , mirror .MirrorBridge , cluster )
256
249
}
257
250
}()
258
251
@@ -331,7 +324,7 @@ func postStart(exp *types.Experiment) (ferr error) {
331
324
// name).
332
325
name := util .RandomString (15 )
333
326
334
- cfg := MirrorConfig {MirrorName : name , IP : ip .String ()}
327
+ cfg := MirrorConfig {MirrorName : name , MirrorBridge : amd . MirrorBridge , IP : ip .String ()}
335
328
336
329
status .Mirrors [host .Hostname ()] = cfg
337
330
@@ -440,17 +433,9 @@ func cleanup(exp *types.Experiment) error {
440
433
return fmt .Errorf ("decoding app status: %w" , err )
441
434
}
442
435
443
- for _ , host := range app .Hosts () {
444
- cfg , ok := status .Mirrors [host .Hostname ()]
445
- if ! ok {
446
- log .Error ("missing mirror config for %s in experiment status" , host .Hostname ())
447
- continue
448
- }
449
-
450
- name := cfg .MirrorName
451
-
452
- if err := deleteMirror (name , amd .MirrorBridge , cluster ); err != nil {
453
- log .Error ("removing mirror %s from cluster: %v" , name , err )
436
+ for _ , cfg := range status .Mirrors {
437
+ if err := deleteMirror (cfg .MirrorName , cfg .MirrorBridge , cluster ); err != nil {
438
+ log .Error ("removing mirror %s from cluster: %v" , cfg .MirrorName , err )
454
439
}
455
440
}
456
441
@@ -528,19 +513,22 @@ func mirrorNet(md *MirrorAppMetadataV1) (netaddr.IPPrefix, error) {
528
513
529
514
running , err := types .RunningExperiments ()
530
515
if err != nil {
531
- return netaddr.IPPrefix {}, fmt .Errorf ("getting running experiments: %w" , err )
516
+ // Log the error, but don't escalate it. Instead, just assume there's no
517
+ // other experiments running and let things (potentially) fail
518
+ // spectacularly.
519
+ log .Error ("getting running experiments: %v" , err )
520
+ return subnet , nil
532
521
}
533
522
534
523
var used []netaddr.IPPrefix
535
524
536
525
for _ , exp := range running {
537
526
var status MirrorAppStatus
538
527
539
- if err := exp .Status .ParseAppStatus ("mirror" , & status ); err != nil {
540
- return netaddr.IPPrefix {}, fmt .Errorf ("parsing mirror app status for experiment %s: %w" , exp .Metadata .Name , err )
528
+ // Not every experiment uses the mirror app, so don't worry about errors.
529
+ if err := exp .Status .ParseAppStatus ("mirror" , & status ); err == nil {
530
+ used = append (used , netaddr .MustParseIPPrefix (status .Subnet ))
541
531
}
542
-
543
- used = append (used , netaddr .MustParseIPPrefix (status .Subnet ))
544
532
}
545
533
546
534
subnet , err = putil .UnusedSubnet (subnet , used )
0 commit comments