DodoApp: Support dev virtual machines
Change-Id: Ib7641adb5be477bdde7cd9a06df4b45aa65a1c01
diff --git a/core/installer/app.go b/core/installer/app.go
index cee8a5f..3a16abe 100644
--- a/core/installer/app.go
+++ b/core/installer/app.go
@@ -346,7 +346,7 @@
return rendered{}, err
}
{
- charts := res.LookupPath(cue.ParsePath("charts"))
+ charts := res.LookupPath(cue.ParsePath("output.charts"))
i, err := charts.Fields()
if err != nil {
return rendered{}, err
@@ -366,7 +366,7 @@
}
}
{
- images := res.LookupPath(cue.ParsePath("images"))
+ images := res.LookupPath(cue.ParsePath("output.images"))
i, err := images.Fields()
if err != nil {
return rendered{}, err
@@ -380,8 +380,8 @@
}
}
{
- output := res.LookupPath(cue.ParsePath("output"))
- i, err := output.Fields()
+ helm := res.LookupPath(cue.ParsePath("output.helm"))
+ i, err := helm.Fields()
if err != nil {
return rendered{}, err
}