Skip to content

Commit

Permalink
[no ci] wip no cilium
Browse files Browse the repository at this point in the history
  • Loading branch information
3u13r committed Sep 18, 2023
1 parent 19bcc18 commit b6af37a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion cli/internal/helm/helm.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ package helm
import (
"context"
"fmt"
"time"

"github.com/edgelesssys/constellation/v2/cli/internal/clusterid"
"github.com/edgelesssys/constellation/v2/cli/internal/terraform"
Expand Down Expand Up @@ -125,7 +126,7 @@ 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)
time.Sleep(60 * time.Second)
fmt.Println("Doing Applying charts")
for _, action := range c.actions {
c.log.Debugf("Applying %q", action.ReleaseName())
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{conServicesRelease, certManagerRelease} // ciliumRelease
if i.config.DeployCSIDriver() {
csiRelease, err := i.loadRelease(csiInfo, helmWaitMode)
if err != nil {
Expand Down

0 comments on commit b6af37a

Please sign in to comment.