mirror of https://github.com/k3s-io/k3s
Add a template printer to kubecfg.
parent
dcbb309e4f
commit
f7bd5a6f0f
|
@ -24,6 +24,7 @@ import (
|
||||||
"os"
|
"os"
|
||||||
"strconv"
|
"strconv"
|
||||||
"strings"
|
"strings"
|
||||||
|
"text/template"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
kube_client "github.com/GoogleCloudPlatform/kubernetes/pkg/client"
|
kube_client "github.com/GoogleCloudPlatform/kubernetes/pkg/client"
|
||||||
|
@ -50,6 +51,7 @@ var (
|
||||||
verbose = flag.Bool("verbose", false, "If true, print extra information")
|
verbose = flag.Bool("verbose", false, "If true, print extra information")
|
||||||
proxy = flag.Bool("proxy", false, "If true, run a proxy to the api server")
|
proxy = flag.Bool("proxy", false, "If true, run a proxy to the api server")
|
||||||
www = flag.String("www", "", "If -proxy is true, use this directory to serve static files")
|
www = flag.String("www", "", "If -proxy is true, use this directory to serve static files")
|
||||||
|
templateFile = flag.String("template", "", "If present load this file as a golang template and us it for output printing")
|
||||||
)
|
)
|
||||||
|
|
||||||
func usage() {
|
func usage() {
|
||||||
|
@ -188,6 +190,20 @@ func executeAPIRequest(method string, s *kube_client.Client) bool {
|
||||||
printer = &kubecfg.IdentityPrinter{}
|
printer = &kubecfg.IdentityPrinter{}
|
||||||
} else if *yaml {
|
} else if *yaml {
|
||||||
printer = &kubecfg.YAMLPrinter{}
|
printer = &kubecfg.YAMLPrinter{}
|
||||||
|
} else if len(*templateFile) > 0 {
|
||||||
|
data, err := ioutil.ReadFile(*templateFile)
|
||||||
|
if err != nil {
|
||||||
|
glog.Fatalf("Error reading template %s, %v\n", *templateFile, err)
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
tmpl, err := template.New("output").Parse(string(data))
|
||||||
|
if err != nil {
|
||||||
|
glog.Fatalf("Error parsing template %s, %v\n", string(data), err)
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
printer = &kubecfg.TemplatePrinter{
|
||||||
|
Template: tmpl,
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
printer = &kubecfg.HumanReadablePrinter{}
|
printer = &kubecfg.HumanReadablePrinter{}
|
||||||
}
|
}
|
||||||
|
|
|
@ -22,6 +22,7 @@ import (
|
||||||
"io"
|
"io"
|
||||||
"strings"
|
"strings"
|
||||||
"text/tabwriter"
|
"text/tabwriter"
|
||||||
|
"text/template"
|
||||||
|
|
||||||
"github.com/GoogleCloudPlatform/kubernetes/pkg/api"
|
"github.com/GoogleCloudPlatform/kubernetes/pkg/api"
|
||||||
"github.com/GoogleCloudPlatform/kubernetes/pkg/labels"
|
"github.com/GoogleCloudPlatform/kubernetes/pkg/labels"
|
||||||
|
@ -235,3 +236,19 @@ func (h *HumanReadablePrinter) PrintObj(obj interface{}, output io.Writer) error
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type TemplatePrinter struct {
|
||||||
|
Template *template.Template
|
||||||
|
}
|
||||||
|
|
||||||
|
func (t *TemplatePrinter) Print(data []byte, w io.Writer) error {
|
||||||
|
obj, err := api.Decode(data)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
return t.PrintObj(obj, w)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (t *TemplatePrinter) PrintObj(obj interface{}, w io.Writer) error {
|
||||||
|
return t.Template.Execute(w, obj)
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue