Skip to content

Commit

Permalink
Merge pull request #7999 from tstromberg/addon-retry-more
Browse files Browse the repository at this point in the history
addons: fix initial retry delay, double maximum limit
  • Loading branch information
tstromberg authored May 4, 2020
2 parents 3e30e9f + 6969200 commit d363ca9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/addons/addons.go
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ func enableOrDisableAddonInternal(cc *config.ClusterConfig, addon *assets.Addon,
return err
}

return retry.Expo(apply, 100*time.Microsecond, time.Minute)
return retry.Expo(apply, 250*time.Millisecond, 2*time.Minute)
}

// enableOrDisableStorageClasses enables or disables storage classes
Expand Down

0 comments on commit d363ca9

Please sign in to comment.