DodoApp: Implement commit status page
Render used volume, postgresql and ingress resource details.
Change-Id: I87f34fd19d0d0d31ec495d2798c9f5ce99c0fd43
diff --git a/core/installer/tasks/activate.go b/core/installer/tasks/activate.go
index 6916262..dafbaf7 100644
--- a/core/installer/tasks/activate.go
+++ b/core/installer/tasks/activate.go
@@ -32,7 +32,7 @@
return err
}
repoHost := strings.Split(st.ssClient.Address(), ":")[0]
- return st.repo.Do(func(r soft.RepoFS) (string, error) {
+ _, err = st.repo.Do(func(r soft.RepoFS) (string, error) {
kust, err := soft.ReadKustomization(r, "environments/kustomization.yaml")
if err != nil {
return "", err
@@ -69,6 +69,7 @@
}
return fmt.Sprintf("%s: initialize environment", env.Id), nil
})
+ return err
})
return &t
}