From 19bcc186f7dac5dddc35a314f2b2b7f4d9ea1a9c Mon Sep 17 00:00:00 2001 From: Leonard Cohnen Date: Thu, 7 Sep 2023 10:43:23 +0200 Subject: [PATCH] [no ci] wip: enable cilium installation again --- cli/internal/helm/helm.go | 3 +++ cli/internal/helm/loader.go | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) 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 {