Skip to content

Commit

Permalink
Fix the blockrsync container pulling the wrong image (#124)
Browse files Browse the repository at this point in the history
Missed that the blockrsync container was hardcoded to
the default instead of using the added lookup code.

Signed-off-by: Alexander Wels <[email protected]>
Co-authored-by: Alexander Wels <[email protected]>
  • Loading branch information
awels and Alexander Wels authored Jun 21, 2024
1 parent ad52529 commit d53911c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion state_transfer/transfer/blockrsync/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ func createBlockrsyncClient(c client.Client, r *BlockrsyncTransfer, pvc transfer
{
Name: BlockRsyncContainer,
ImagePullPolicy: v1.PullAlways,
Image: blockrsyncImage,
Image: r.transferOptions.GetBlockrsyncClientImage(),
},
}
addVolumeToContainer(pvc.Source().Claim(), pvc.Source().LabelSafeName(), pvc.Source().LabelSafeName(), &containers[1])
Expand Down

0 comments on commit d53911c

Please sign in to comment.