Skip to content

Commit

Permalink
[no ci] wip: enable cilium installation again
Browse files Browse the repository at this point in the history
  • Loading branch information
3u13r committed Sep 18, 2023
1 parent cac2be8 commit 19bcc18
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions cli/internal/helm/helm.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion cli/internal/helm/loader.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 19bcc18

Please sign in to comment.