Skip to content

Commit

Permalink
Shuffle hardware inventory for tinkerbell before reservation (#8264)
Browse files Browse the repository at this point in the history
* shuffle hardware inventory for tinkerbell before reservation

Signed-off-by: Rahul Ganesh <[email protected]>

* Account for mutexes during shuffle and move it to struct method

Signed-off-by: Rahul Ganesh <[email protected]>

---------

Signed-off-by: Rahul Ganesh <[email protected]>
Co-authored-by: Rahul Ganesh <[email protected]>
  • Loading branch information
rahulbabu95 and Rahul Ganesh authored Jul 23, 2024
1 parent 2e15d06 commit 7036dcb
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
7 changes: 7 additions & 0 deletions internal/test/e2e/run.go
Original file line number Diff line number Diff line change
Expand Up @@ -218,6 +218,13 @@ func RunTests(conf instanceRunConf, inventoryCatalogue map[string]*hardwareCatal
} else {
hardwareCatalogue = inventoryCatalogue[nonAirgappedHardware]
}
conf.Logger.Info("Shuffling hardware inventory for tinkerbell")
// shuffle hardware to introduce randomness during hardware reservation.
// we do not want quick e2e runs to always pick the first few available hardware from the list and over-populate the boot entries
// this will quickly break the booting process as the hardware runs out of boot space to store these entries.
// randomly picking the hardware will distribute the boot entries across these hardware during each run
// ideally for long term we want a clear cleanup of the boot entries in the hardware
hardwareCatalogue.shuffleHardware()
err = reserveTinkerbellHardware(&conf, hardwareCatalogue)
if err != nil {
return "", nil, err
Expand Down
10 changes: 10 additions & 0 deletions internal/test/e2e/tinkerbell_hardware_queue.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ package e2e

import (
"fmt"
"math/rand"
"sync"
"time"

Expand Down Expand Up @@ -42,6 +43,15 @@ func (hwQu *hardwareCatalogue) releaseHardware(hws []*api.Hardware) {
hwQu.mu.Unlock()
}

func (hwQu *hardwareCatalogue) shuffleHardware() {
hwQu.mu.Lock()
random := rand.New(rand.NewSource(time.Now().UnixNano()))
random.Shuffle(len(hwQu.hws), func(i, j int) {
hwQu.hws[i], hwQu.hws[j] = hwQu.hws[j], hwQu.hws[i]
})
hwQu.mu.Unlock()
}

func newHardwareCatalogue(hws []*api.Hardware) *hardwareCatalogue {
return &hardwareCatalogue{
hws: hws,
Expand Down

0 comments on commit 7036dcb

Please sign in to comment.