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
a6af67ee
Commit
a6af67ee
authored
Mar 29, 2016
by
Adam Reese
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #491 from adamreese/feat/helm-kubectlpath
feat(cli) add kubectl path option
parents
3539586c
c6af1695
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
30 additions
and
21 deletions
+30
-21
helm.go
cmd/helm/helm.go
+6
-1
server.go
cmd/helm/server.go
+24
-20
No files found.
cmd/helm/helm.go
View file @
a6af67ee
...
@@ -70,10 +70,15 @@ func main() {
...
@@ -70,10 +70,15 @@ func main() {
app
.
Flags
=
[]
cli
.
Flag
{
app
.
Flags
=
[]
cli
.
Flag
{
cli
.
StringFlag
{
cli
.
StringFlag
{
Name
:
"host,u"
,
Name
:
"host,u"
,
Usage
:
"The URL of the DM server
.
"
,
Usage
:
"The URL of the DM server"
,
EnvVar
:
"HELM_HOST"
,
EnvVar
:
"HELM_HOST"
,
Value
:
"https://localhost:8000/"
,
Value
:
"https://localhost:8000/"
,
},
},
cli
.
StringFlag
{
Name
:
"kubectl"
,
Usage
:
"The path to the kubectl binary"
,
EnvVar
:
"KUBECTL"
,
},
cli
.
IntFlag
{
cli
.
IntFlag
{
Name
:
"timeout"
,
Name
:
"timeout"
,
Usage
:
"Time in seconds to wait for response"
,
Usage
:
"Time in seconds to wait for response"
,
...
...
cmd/helm/server.go
View file @
a6af67ee
...
@@ -123,11 +123,13 @@ func dmCmd() cli.Command {
...
@@ -123,11 +123,13 @@ func dmCmd() cli.Command {
}
}
func
installServer
(
c
*
cli
.
Context
)
error
{
func
installServer
(
c
*
cli
.
Context
)
error
{
dryRun
:=
c
.
Bool
(
"dry-run"
)
resImg
:=
c
.
String
(
"resourcifier-image"
)
resImg
:=
c
.
String
(
"resourcifier-image"
)
ebImg
:=
c
.
String
(
"expandybird-image"
)
ebImg
:=
c
.
String
(
"expandybird-image"
)
manImg
:=
c
.
String
(
"manager-image"
)
manImg
:=
c
.
String
(
"manager-image"
)
runner
:=
getKubectlRunner
(
dryRun
)
dryRun
:=
c
.
Bool
(
"dry-run"
)
kubectlPath
:=
c
.
GlobalString
(
"kubectl"
)
runner
:=
buildKubectlRunner
(
kubectlPath
,
dryRun
)
i
:=
client
.
NewInstaller
()
i
:=
client
.
NewInstaller
()
i
.
Manager
[
"Image"
]
=
manImg
i
.
Manager
[
"Image"
]
=
manImg
...
@@ -144,7 +146,8 @@ func installServer(c *cli.Context) error {
...
@@ -144,7 +146,8 @@ func installServer(c *cli.Context) error {
func
uninstallServer
(
c
*
cli
.
Context
)
error
{
func
uninstallServer
(
c
*
cli
.
Context
)
error
{
dryRun
:=
c
.
Bool
(
"dry-run"
)
dryRun
:=
c
.
Bool
(
"dry-run"
)
runner
:=
getKubectlRunner
(
dryRun
)
kubectlPath
:=
c
.
GlobalString
(
"kubectl"
)
runner
:=
buildKubectlRunner
(
kubectlPath
,
dryRun
)
out
,
err
:=
client
.
Uninstall
(
runner
)
out
,
err
:=
client
.
Uninstall
(
runner
)
if
err
!=
nil
{
if
err
!=
nil
{
...
@@ -156,12 +159,10 @@ func uninstallServer(c *cli.Context) error {
...
@@ -156,12 +159,10 @@ func uninstallServer(c *cli.Context) error {
func
statusServer
(
c
*
cli
.
Context
)
error
{
func
statusServer
(
c
*
cli
.
Context
)
error
{
dryRun
:=
c
.
Bool
(
"dry-run"
)
dryRun
:=
c
.
Bool
(
"dry-run"
)
client
:=
kubectl
.
Client
kubectlPath
:=
c
.
GlobalString
(
"kubectl"
)
if
dryRun
{
runner
:=
buildKubectlRunner
(
kubectlPath
,
dryRun
)
client
=
kubectl
.
PrintRunner
{}
}
out
,
err
:=
client
.
GetByKind
(
"pods"
,
""
,
"dm"
)
out
,
err
:=
runner
.
GetByKind
(
"pods"
,
""
,
"dm"
)
if
err
!=
nil
{
if
err
!=
nil
{
return
err
return
err
}
}
...
@@ -169,23 +170,26 @@ func statusServer(c *cli.Context) error {
...
@@ -169,23 +170,26 @@ func statusServer(c *cli.Context) error {
return
nil
return
nil
}
}
func
getKubectlRunner
(
dryRun
bool
)
kubectl
.
Runner
{
if
dryRun
{
return
&
kubectl
.
PrintRunner
{}
}
return
&
kubectl
.
RealRunner
{}
}
func
targetServer
(
c
*
cli
.
Context
)
error
{
func
targetServer
(
c
*
cli
.
Context
)
error
{
dryRun
:=
c
.
Bool
(
"dry-run"
)
dryRun
:=
c
.
Bool
(
"dry-run"
)
client
:=
kubectl
.
Client
kubectlPath
:=
c
.
GlobalString
(
"kubectl"
)
if
dryRun
{
runner
:=
buildKubectlRunner
(
kubectlPath
,
dryRun
)
client
=
kubectl
.
PrintRunner
{}
}
out
,
err
:=
runner
.
ClusterInfo
()
out
,
err
:=
client
.
ClusterInfo
()
if
err
!=
nil
{
if
err
!=
nil
{
return
fmt
.
Errorf
(
"%s (%s)"
,
out
,
err
)
return
fmt
.
Errorf
(
"%s (%s)"
,
out
,
err
)
}
}
format
.
Msg
(
string
(
out
))
format
.
Msg
(
string
(
out
))
return
nil
return
nil
}
}
func
buildKubectlRunner
(
kubectlPath
string
,
dryRun
bool
)
kubectl
.
Runner
{
if
dryRun
{
return
&
kubectl
.
PrintRunner
{}
}
// TODO: Refactor out kubectl.Path global
if
kubectlPath
!=
""
{
kubectl
.
Path
=
kubectlPath
}
return
&
kubectl
.
RealRunner
{}
}
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