AppManager: cache helm charts and container images to local registry
Caching container images is disabled until we figure out how to run
container registry behind TLS.
Change-Id: I0253f2a862e5adddff18a82b102f67258151c070
diff --git a/core/installer/bootstrapper.go b/core/installer/bootstrapper.go
index c581f42..4b72556 100644
--- a/core/installer/bootstrapper.go
+++ b/core/installer/bootstrapper.go
@@ -90,7 +90,9 @@
fmt.Println("Failed to get config repo")
return err
}
- mgr, err := NewInfraAppManager(repoIO, b.ns)
+ hf := NewGitHelmFetcher()
+ lg := NewInfraLocalChartGenerator()
+ mgr, err := NewInfraAppManager(repoIO, b.ns, hf, lg)
if err != nil {
return err
}