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.
83 lines
1.9 KiB
83 lines
1.9 KiB
/*
|
|
Copyright 2016 The Kubernetes Authors All rights reserved.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"io"
|
|
"text/template"
|
|
"time"
|
|
|
|
"k8s.io/helm/pkg/chartutil"
|
|
"k8s.io/helm/pkg/proto/hapi/release"
|
|
"k8s.io/helm/pkg/timeconv"
|
|
)
|
|
|
|
var printReleaseTemplate = `REVISION: {{.Release.Version}}
|
|
RELEASED: {{.ReleaseDate}}
|
|
CHART: {{.Release.Chart.Metadata.Name}}-{{.Release.Chart.Metadata.Version}}
|
|
USER-SUPPLIED VALUES:
|
|
{{.Release.Config.Raw}}
|
|
COMPUTED VALUES:
|
|
{{.ComputedValues}}
|
|
HOOKS:
|
|
{{- range .Release.Hooks }}
|
|
---
|
|
# {{.Name}}
|
|
{{.Manifest}}
|
|
{{- end }}
|
|
MANIFEST:
|
|
{{.Release.Manifest}}
|
|
`
|
|
|
|
func printRelease(out io.Writer, rel *release.Release) error {
|
|
if rel == nil {
|
|
return nil
|
|
}
|
|
|
|
cfg, err := chartutil.CoalesceValues(rel.Chart, rel.Config)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
cfgStr, err := cfg.YAML()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
data := map[string]interface{}{
|
|
"Release": rel,
|
|
"ComputedValues": cfgStr,
|
|
"ReleaseDate": timeconv.Format(rel.Info.LastDeployed, time.ANSIC),
|
|
}
|
|
return tpl(printReleaseTemplate, data, out)
|
|
}
|
|
|
|
func tpl(t string, vals map[string]interface{}, out io.Writer) error {
|
|
tt, err := template.New("_").Parse(t)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return tt.Execute(out, vals)
|
|
}
|
|
|
|
func debug(format string, args ...interface{}) {
|
|
if settings.Debug {
|
|
format = fmt.Sprintf("[debug] %s\n", format)
|
|
fmt.Printf(format, args...)
|
|
}
|
|
}
|