mirror of https://github.com/helm/helm
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
600 B
28 lines
600 B
package chartutil
|
|
|
|
import (
|
|
"io/ioutil"
|
|
|
|
"github.com/ghodss/yaml"
|
|
"github.com/kubernetes/helm/pkg/proto/hapi/chart"
|
|
)
|
|
|
|
// UnmarshalChartfile takes raw Chart.yaml data and unmarshals it.
|
|
func UnmarshalChartfile(data []byte) (*chart.Metadata, error) {
|
|
y := &chart.Metadata{}
|
|
err := yaml.Unmarshal(data, y)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return y, nil
|
|
}
|
|
|
|
// LoadChartfile loads a Chart.yaml file into a *chart.Metadata.
|
|
func LoadChartfile(filename string) (*chart.Metadata, error) {
|
|
b, err := ioutil.ReadFile(filename)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return UnmarshalChartfile(b)
|
|
}
|