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
4dc58448
Commit
4dc58448
authored
Feb 27, 2016
by
Adam Reese
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ref(*) move lib code into pkg
parent
3aaf7752
Hide whitespace changes
Inline
Side-by-side
Showing
26 changed files
with
21 additions
and
21 deletions
+21
-21
Makefile
Makefile
+3
-3
chart_upload.go
cmd/helm/chart_upload.go
+1
-1
delete.go
cmd/helm/delete.go
+1
-1
dm.go
cmd/helm/dm.go
+3
-3
doctor.go
cmd/helm/doctor.go
+3
-3
get.go
cmd/helm/get.go
+1
-1
helm.go
cmd/helm/helm.go
+2
-2
list.go
cmd/helm/list.go
+1
-1
pack.go
cmd/helm/pack.go
+1
-1
target.go
cmd/helm/target.go
+2
-2
client.go
pkg/dm/client.go
+0
-0
client_test.go
pkg/dm/client_test.go
+0
-0
install.go
pkg/dm/install.go
+2
-2
transport.go
pkg/dm/transport.go
+0
-0
transport_test.go
pkg/dm/transport_test.go
+0
-0
uninstall.go
pkg/dm/uninstall.go
+1
-1
messages.go
pkg/format/messages.go
+0
-0
cluster_info.go
pkg/kubectl/cluster_info.go
+0
-0
command.go
pkg/kubectl/command.go
+0
-0
create.go
pkg/kubectl/create.go
+0
-0
create_test.go
pkg/kubectl/create_test.go
+0
-0
delete.go
pkg/kubectl/delete.go
+0
-0
get.go
pkg/kubectl/get.go
+0
-0
get_test.go
pkg/kubectl/get_test.go
+0
-0
kubectl.go
pkg/kubectl/kubectl.go
+0
-0
kubectl_test.go
pkg/kubectl/kubectl_test.go
+0
-0
No files found.
Makefile
View file @
4dc58448
...
...
@@ -55,11 +55,11 @@ test-style:
@
if
[
$(
shell
gofmt
-e
-l
-s
$(GO_DIRS))
]
;
then
\
echo
"gofmt check failed:"
;
gofmt
-e
-d
-s
$(GO_DIRS)
;
exit
1
;
\
fi
@
for
i
in
.
$(GO_DIR
S)
;
do
\
@
for
i
in
$(GO_PKG
S)
;
do
\
golint
$$
i
;
\
done
@
for
i
in
.
$(GO_DIRS)
;
do
\
go
vet github.com/deis/helm-dm/
$$
i
;
\
@
for
i
in
$(GO_DIRS)
;
do
\
go
tool vet
$$
i
;
\
done
.PHONY
:
bootstrap
\
...
...
cmd/helm/chart_upload.go
View file @
4dc58448
...
...
@@ -9,7 +9,7 @@ import (
"github.com/aokoli/goutils"
"github.com/codegangsta/cli"
"github.com/deis/helm-dm/format"
"github.com/deis/helm-dm/
pkg/
format"
"github.com/kubernetes/deployment-manager/chart"
)
...
...
cmd/helm/delete.go
View file @
4dc58448
...
...
@@ -4,7 +4,7 @@ import (
"errors"
"github.com/codegangsta/cli"
"github.com/deis/helm-dm/format"
"github.com/deis/helm-dm/
pkg/
format"
)
func
init
()
{
...
...
cmd/helm/dm.go
View file @
4dc58448
...
...
@@ -5,9 +5,9 @@ import (
"os"
"github.com/codegangsta/cli"
"github.com/deis/helm-dm/dm"
"github.com/deis/helm-dm/format"
"github.com/deis/helm-dm/kubectl"
"github.com/deis/helm-dm/
pkg/
dm"
"github.com/deis/helm-dm/
pkg/
format"
"github.com/deis/helm-dm/
pkg/
kubectl"
)
// ErrAlreadyInstalled indicates that DM is already installed.
...
...
cmd/helm/doctor.go
View file @
4dc58448
...
...
@@ -2,9 +2,9 @@ package main
import
(
"github.com/codegangsta/cli"
"github.com/deis/helm-dm/dm"
"github.com/deis/helm-dm/format"
"github.com/deis/helm-dm/kubectl"
"github.com/deis/helm-dm/
pkg/
dm"
"github.com/deis/helm-dm/
pkg/
format"
"github.com/deis/helm-dm/
pkg/
kubectl"
)
func
init
()
{
...
...
cmd/helm/get.go
View file @
4dc58448
...
...
@@ -4,7 +4,7 @@ import (
"errors"
"github.com/codegangsta/cli"
"github.com/deis/helm-dm/format"
"github.com/deis/helm-dm/
pkg/
format"
)
func
init
()
{
...
...
cmd/helm/helm.go
View file @
4dc58448
...
...
@@ -4,8 +4,8 @@ import (
"os"
"github.com/codegangsta/cli"
"github.com/deis/helm-dm/dm"
"github.com/deis/helm-dm/format"
"github.com/deis/helm-dm/
pkg/
dm"
"github.com/deis/helm-dm/
pkg/
format"
)
var
version
=
"0.0.1"
...
...
cmd/helm/list.go
View file @
4dc58448
...
...
@@ -2,7 +2,7 @@ package main
import
(
"github.com/codegangsta/cli"
"github.com/deis/helm-dm/format"
"github.com/deis/helm-dm/
pkg/
format"
)
func
init
()
{
...
...
cmd/helm/pack.go
View file @
4dc58448
...
...
@@ -6,7 +6,7 @@ import (
"os"
"github.com/codegangsta/cli"
"github.com/deis/helm-dm/format"
"github.com/deis/helm-dm/
pkg/
format"
"github.com/kubernetes/deployment-manager/chart"
)
...
...
cmd/helm/target.go
View file @
4dc58448
...
...
@@ -3,8 +3,8 @@ package main
import
(
"fmt"
"github.com/deis/helm-dm/format"
"github.com/deis/helm-dm/kubectl"
"github.com/deis/helm-dm/
pkg/
format"
"github.com/deis/helm-dm/
pkg/
kubectl"
)
func
target
(
dryRun
bool
)
error
{
...
...
dm/client.go
→
pkg/
dm/client.go
View file @
4dc58448
File moved
dm/client_test.go
→
pkg/
dm/client_test.go
View file @
4dc58448
File moved
dm/install.go
→
pkg/
dm/install.go
View file @
4dc58448
package
dm
import
(
"github.com/deis/helm-dm/format"
"github.com/deis/helm-dm/kubectl"
"github.com/deis/helm-dm/
pkg/
format"
"github.com/deis/helm-dm/
pkg/
kubectl"
)
// Install uses kubectl to install the base DM.
...
...
dm/transport.go
→
pkg/
dm/transport.go
View file @
4dc58448
File moved
dm/transport_test.go
→
pkg/
dm/transport_test.go
View file @
4dc58448
File moved
dm/uninstall.go
→
pkg/
dm/uninstall.go
View file @
4dc58448
package
dm
import
(
"github.com/deis/helm-dm/kubectl"
"github.com/deis/helm-dm/
pkg/
kubectl"
)
// Uninstall uses kubectl to uninstall the base DM.
...
...
format/messages.go
→
pkg/
format/messages.go
View file @
4dc58448
File moved
kubectl/cluster_info.go
→
pkg/
kubectl/cluster_info.go
View file @
4dc58448
File moved
kubectl/command.go
→
pkg/
kubectl/command.go
View file @
4dc58448
File moved
kubectl/create.go
→
pkg/
kubectl/create.go
View file @
4dc58448
File moved
kubectl/create_test.go
→
pkg/
kubectl/create_test.go
View file @
4dc58448
File moved
kubectl/delete.go
→
pkg/
kubectl/delete.go
View file @
4dc58448
File moved
kubectl/get.go
→
pkg/
kubectl/get.go
View file @
4dc58448
File moved
kubectl/get_test.go
→
pkg/
kubectl/get_test.go
View file @
4dc58448
File moved
kubectl/kubectl.go
→
pkg/
kubectl/kubectl.go
View file @
4dc58448
File moved
kubectl/kubectl_test.go
→
pkg/
kubectl/kubectl_test.go
View file @
4dc58448
File moved
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