[boot] Try transfering 20 times instead of 10.

We're seeing a failure to send transfer the images about 20 times per
day in CI and CQ.
This may just be due to noise on the Ethernet switches used, so it's
possible that trying again will eventually succeed.
I'll monitor the flake rate after this change and revert it if it
doesn't improve things.

Bug: IN-914 #comment
Test: None
Change-Id: I7d484b7c077d7bc8f6ddd67c9e39d1f61178a223
diff --git a/botanist/boot.go b/botanist/boot.go
index e0a51da..2ceafc0 100644
--- a/botanist/boot.go
+++ b/botanist/boot.go
@@ -204,7 +204,7 @@
 
 	// Attempt the whole process of sending every file over and retry on failure of any file.
 	// This behavior more closely aligns with that of the bootserver.
-	return retry.Retry(ctx, retry.WithMaxRetries(retry.NewConstantBackoff(time.Second), 10), func() error {
+	return retry.Retry(ctx, retry.WithMaxRetries(retry.NewConstantBackoff(time.Second), 20), func() error {
 		for _, f := range files {
 			select {
 			case <-ctx.Done():