bootstrapper: move fixing & waiting for Cilium to earlier stage

This commit is contained in:
Nils Hanke 2023-03-10 18:27:01 +01:00 committed by Nils Hanke
parent 122b5ff0a0
commit 97d95bd48c
4 changed files with 67 additions and 25 deletions

View file

@ -510,7 +510,12 @@ func (s *stubClusterUtil) StartKubelet() error {
return s.startKubeletErr
}
func (s *stubClusterUtil) FixCilium(log *logger.Logger) {
func (s *stubClusterUtil) WaitForCilium(ctx context.Context, log *logger.Logger) error {
return nil
}
func (s *stubClusterUtil) FixCilium(ctx context.Context) error {
return nil
}
type stubConfigProvider struct {