mirror of https://github.com/helm/helm
Merge pull request #1738 from adamreese/feat/1537-upgrade-debug
feat(helm): add release debugging for upgradepull/1743/head
commit
e53f833339
@ -0,0 +1,74 @@
|
||||
/*
|
||||
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 (
|
||||
"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)
|
||||
}
|
Loading…
Reference in new issue