diff --git a/cli/internal/helm/helm.go b/cli/internal/helm/helm.go index 5c285cc87c..f80d2d42a9 100644 --- a/cli/internal/helm/helm.go +++ b/cli/internal/helm/helm.go @@ -124,6 +124,9 @@ type ChartApplyExecutor struct { // Apply applies the charts in order. func (c ChartApplyExecutor) Apply(ctx context.Context) error { + fmt.Println("Waiting Applying charts") + // time.Sleep(60 * time.Second) + fmt.Println("Doing Applying charts") for _, action := range c.actions { c.log.Debugf("Applying %q", action.ReleaseName()) if err := action.Apply(ctx); err != nil { diff --git a/cli/internal/helm/loader.go b/cli/internal/helm/loader.go index acdbc6c302..81f060e8c4 100644 --- a/cli/internal/helm/loader.go +++ b/cli/internal/helm/loader.go @@ -150,7 +150,7 @@ func (i *chartLoader) loadReleases(conformanceMode bool, helmWaitMode WaitMode, } conServicesRelease.Values = mergeMaps(conServicesRelease.Values, svcVals) - releases := releaseApplyOrder{ciliumRelease, conServicesRelease, certManagerRelease} + releases := releaseApplyOrder{ciliumRelease, conServicesRelease, certManagerRelease} // if i.config.DeployCSIDriver() { csiRelease, err := i.loadRelease(csiInfo, helmWaitMode) if err != nil {