Commit 93f74d0c authored by vaikas-google's avatar vaikas-google

bring back to par with master

parent 125bad99
...@@ -214,6 +214,7 @@ func execute() { ...@@ -214,6 +214,7 @@ func execute() {
// Type is most likely a primitive. // Type is most likely a primitive.
tUrl = args[1] tUrl = args[1]
} else { } else {
// TODO(vaikas): Support packages properly.
tUrl = tUrls[0] tUrl = tUrls[0]
} }
path := fmt.Sprintf("types/%s/instances", url.QueryEscape(tUrl)) path := fmt.Sprintf("types/%s/instances", url.QueryEscape(tUrl))
......
resources:
- name: cassandra
type: github.com/helm/charts/cassandra
properties: null
...@@ -21,7 +21,6 @@ import ( ...@@ -21,7 +21,6 @@ import (
"encoding/json" "encoding/json"
"fmt" "fmt"
"io/ioutil" "io/ioutil"
"log"
"net/http" "net/http"
"github.com/ghodss/yaml" "github.com/ghodss/yaml"
...@@ -141,8 +140,6 @@ func (e *expander) ExpandTemplate(t *common.Template) (*ExpandedTemplate, error) ...@@ -141,8 +140,6 @@ func (e *expander) ExpandTemplate(t *common.Template) (*ExpandedTemplate, error)
t.Imports = append(t.Imports, newImp...) t.Imports = append(t.Imports, newImp...)
log.Printf("Got Imports as %#v", t.Imports)
for { for {
// Now expand with everything imported. // Now expand with everything imported.
result, err := e.expandTemplate(t) result, err := e.expandTemplate(t)
...@@ -169,7 +166,6 @@ func (e *expander) ExpandTemplate(t *common.Template) (*ExpandedTemplate, error) ...@@ -169,7 +166,6 @@ func (e *expander) ExpandTemplate(t *common.Template) (*ExpandedTemplate, error)
// If the new imports contain nothing, we are done. Everything is fully expanded. // If the new imports contain nothing, we are done. Everything is fully expanded.
if len(newImp) == 0 { if len(newImp) == 0 {
result.Layout = finalLayout result.Layout = finalLayout
log.Printf("Returning config as %#v", result)
return result, nil return result, nil
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment