Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
H
helm3
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
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
go
helm3
Commits
acc176e1
Commit
acc176e1
authored
Dec 01, 2015
by
vaikas-google
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #138 from bmelville/cli
Adding manifest support in dm CLI + YAML responses
parents
5b5e3450
0dc88235
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
30 additions
and
3 deletions
+30
-3
dm.go
dm/dm.go
+30
-3
No files found.
dm/dm.go
View file @
acc176e1
...
@@ -137,6 +137,27 @@ func main() {
...
@@ -137,6 +137,27 @@ func main() {
path
:=
fmt
.
Sprintf
(
"deployments/%s"
,
args
[
1
])
path
:=
fmt
.
Sprintf
(
"deployments/%s"
,
args
[
1
])
action
:=
fmt
.
Sprintf
(
"get deployment named %s"
,
args
[
1
])
action
:=
fmt
.
Sprintf
(
"get deployment named %s"
,
args
[
1
])
callService
(
path
,
"GET"
,
action
,
nil
)
callService
(
path
,
"GET"
,
action
,
nil
)
case
"manifest"
:
msg
:=
"Must specify manifest in the form <deployment>/<manifest> or <deployment> to list."
if
len
(
args
)
<
2
{
fmt
.
Fprintln
(
os
.
Stderr
,
msg
)
usage
()
}
s
:=
strings
.
Split
(
args
[
1
],
"/"
)
ls
:=
len
(
s
)
if
ls
<
1
||
ls
>
2
{
fmt
.
Fprintln
(
os
.
Stderr
,
fmt
.
Sprintf
(
"Invalid manifest (%s), %s"
,
args
[
1
],
msg
))
usage
()
}
path
:=
fmt
.
Sprintf
(
"deployments/%s/manifests"
,
s
[
0
])
if
ls
==
2
{
path
=
path
+
fmt
.
Sprintf
(
"/%s"
,
s
[
1
])
}
action
:=
fmt
.
Sprintf
(
"get manifest %s"
,
args
[
1
])
callService
(
path
,
"GET"
,
action
,
nil
)
case
"delete"
:
case
"delete"
:
if
len
(
args
)
<
2
{
if
len
(
args
)
<
2
{
fmt
.
Fprintln
(
os
.
Stderr
,
"No deployment name supplied"
)
fmt
.
Fprintln
(
os
.
Stderr
,
"No deployment name supplied"
)
...
@@ -176,11 +197,17 @@ func callService(path, method, action string, reader io.ReadCloser) {
...
@@ -176,11 +197,17 @@ func callService(path, method, action string, reader io.ReadCloser) {
u
:=
fmt
.
Sprintf
(
"%s/%s"
,
*
service
,
path
)
u
:=
fmt
.
Sprintf
(
"%s/%s"
,
*
service
,
path
)
resp
:=
callHttp
(
u
,
method
,
action
,
reader
)
resp
:=
callHttp
(
u
,
method
,
action
,
reader
)
var
prettyJSON
bytes
.
Buffer
var
j
interface
{}
if
err
:=
json
.
Indent
(
&
prettyJSON
,
[]
byte
(
resp
),
""
,
" "
);
err
!=
nil
{
if
err
:=
json
.
Unmarshal
([]
byte
(
resp
),
&
j
);
err
!=
nil
{
log
.
Fatalf
(
"Failed to parse JSON response from service: %s"
,
resp
)
log
.
Fatalf
(
"Failed to parse JSON response from service: %s"
,
resp
)
}
}
fmt
.
Println
(
prettyJSON
.
String
())
y
,
err
:=
yaml
.
Marshal
(
j
)
if
err
!=
nil
{
log
.
Fatalf
(
"Failed to serialize JSON response from service: %s"
,
resp
)
}
fmt
.
Println
(
string
(
y
))
}
}
func
callHttp
(
path
,
method
,
action
string
,
reader
io
.
ReadCloser
)
string
{
func
callHttp
(
path
,
method
,
action
string
,
reader
io
.
ReadCloser
)
string
{
...
...
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