Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
K
k3s
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
k3s
Commits
f7bd5a6f
Commit
f7bd5a6f
authored
Jul 14, 2014
by
Brendan Burns
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add a template printer to kubecfg.
parent
dcbb309e
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
33 additions
and
0 deletions
+33
-0
kubecfg.go
cmd/kubecfg/kubecfg.go
+16
-0
resource_printer.go
pkg/kubecfg/resource_printer.go
+17
-0
No files found.
cmd/kubecfg/kubecfg.go
View file @
f7bd5a6f
...
...
@@ -24,6 +24,7 @@ import (
"os"
"strconv"
"strings"
"text/template"
"time"
kube_client
"github.com/GoogleCloudPlatform/kubernetes/pkg/client"
...
...
@@ -50,6 +51,7 @@ var (
verbose
=
flag
.
Bool
(
"verbose"
,
false
,
"If true, print extra information"
)
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"
)
templateFile
=
flag
.
String
(
"template"
,
""
,
"If present load this file as a golang template and us it for output printing"
)
)
func
usage
()
{
...
...
@@ -188,6 +190,20 @@ func executeAPIRequest(method string, s *kube_client.Client) bool {
printer
=
&
kubecfg
.
IdentityPrinter
{}
}
else
if
*
yaml
{
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
{
printer
=
&
kubecfg
.
HumanReadablePrinter
{}
}
...
...
pkg/kubecfg/resource_printer.go
View file @
f7bd5a6f
...
...
@@ -22,6 +22,7 @@ import (
"io"
"strings"
"text/tabwriter"
"text/template"
"github.com/GoogleCloudPlatform/kubernetes/pkg/api"
"github.com/GoogleCloudPlatform/kubernetes/pkg/labels"
...
...
@@ -235,3 +236,19 @@ func (h *HumanReadablePrinter) PrintObj(obj interface{}, output io.Writer) error
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
)
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment