Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Pål Karlsrud
helm
Commits
5b42cd73
Commit
5b42cd73
authored
Aug 30, 2017
by
Pål Karlsrud
Browse files
Temporarily use github.com/paalka/helm as the package name.
parent
70d336c4
Changes
213
Hide whitespace changes
Inline
Side-by-side
Makefile
View file @
5b42cd73
...
...
@@ -25,13 +25,13 @@ all: build
.PHONY
:
build
build
:
GOBIN
=
$(BINDIR)
$(GO)
install
$(GOFLAGS)
-tags
'
$(TAGS)
'
-ldflags
'
$(LDFLAGS)
'
k8s.io
/helm/cmd/...
GOBIN
=
$(BINDIR)
$(GO)
install
$(GOFLAGS)
-tags
'
$(TAGS)
'
-ldflags
'
$(LDFLAGS)
'
github.com/paalka
/helm/cmd/...
# usage: make clean build-cross dist APP=helm|tiller VERSION=v2.0.0-alpha.3
.PHONY
:
build-cross
build-cross
:
LDFLAGS += -extldflags "-static"
build-cross
:
CGO_ENABLED
=
0 gox
-output
=
"_dist/{{.OS}}-{{.Arch}}/{{.Dir}}"
-osarch
=
'
$(TARGETS)
'
$(GOFLAGS)
-tags
'
$(TAGS)
'
-ldflags
'
$(LDFLAGS)
'
k8s.io
/helm/cmd/
$(APP)
CGO_ENABLED
=
0 gox
-output
=
"_dist/{{.OS}}-{{.Arch}}/{{.Dir}}"
-osarch
=
'
$(TARGETS)
'
$(GOFLAGS)
-tags
'
$(TAGS)
'
-ldflags
'
$(LDFLAGS)
'
github.com/paalka
/helm/cmd/
$(APP)
.PHONY
:
dist
dist
:
...
...
@@ -60,7 +60,7 @@ check-docker:
docker-binary
:
BINDIR = ./rootfs
docker-binary
:
GOFLAGS += -a -installsuffix cgo
docker-binary
:
GOOS
=
linux
GOARCH
=
amd64
CGO_ENABLED
=
0
$(GO)
build
-o
$(BINDIR)
/tiller
$(GOFLAGS)
-tags
'
$(TAGS)
'
-ldflags
'
$(LDFLAGS)
'
k8s.io
/helm/cmd/tiller
GOOS
=
linux
GOARCH
=
amd64
CGO_ENABLED
=
0
$(GO)
build
-o
$(BINDIR)
/tiller
$(GOFLAGS)
-tags
'
$(TAGS)
'
-ldflags
'
$(LDFLAGS)
'
github.com/paalka
/helm/cmd/tiller
.PHONY
:
docker-build
docker-build
:
check-docker docker-binary
...
...
@@ -71,7 +71,7 @@ docker-build: check-docker docker-binary
docker-binary-rudder
:
BINDIR = ./rootfs
docker-binary-rudder
:
GOFLAGS += -a -installsuffix cgo
docker-binary-rudder
:
GOOS
=
linux
GOARCH
=
amd64
CGO_ENABLED
=
0
$(GO)
build
-o
$(BINDIR)
/rudder
$(GOFLAGS)
-tags
'
$(TAGS)
'
-ldflags
'
$(LDFLAGS)
'
k8s.io
/helm/cmd/rudder
GOOS
=
linux
GOARCH
=
amd64
CGO_ENABLED
=
0
$(GO)
build
-o
$(BINDIR)
/rudder
$(GOFLAGS)
-tags
'
$(TAGS)
'
-ldflags
'
$(LDFLAGS)
'
github.com/paalka
/helm/cmd/rudder
.PHONY
:
docker-build-experimental
docker-build-experimental
:
check-docker docker-binary docker-binary-rudder
...
...
_proto/Makefile
View file @
5b42cd73
...
...
@@ -2,7 +2,7 @@ space := $(empty) $(empty)
comma
:=
,
empty
:=
import_path
=
k8s.io
/helm/pkg/proto/hapi
import_path
=
github.com/paalka
/helm/pkg/proto/hapi
dst
=
../pkg/proto
target
=
go
...
...
cmd/helm/create.go
View file @
5b42cd73
...
...
@@ -24,9 +24,9 @@ import (
"github.com/spf13/cobra"
"
k8s.io
/helm/pkg/chartutil"
"
k8s.io
/helm/pkg/helm/helmpath"
"
k8s.io
/helm/pkg/proto/hapi/chart"
"
github.com/paalka
/helm/pkg/chartutil"
"
github.com/paalka
/helm/pkg/helm/helmpath"
"
github.com/paalka
/helm/pkg/proto/hapi/chart"
)
const
createDesc
=
`
...
...
cmd/helm/create_test.go
View file @
5b42cd73
...
...
@@ -22,8 +22,8 @@ import (
"path/filepath"
"testing"
"
k8s.io
/helm/pkg/chartutil"
"
k8s.io
/helm/pkg/proto/hapi/chart"
"
github.com/paalka
/helm/pkg/chartutil"
"
github.com/paalka
/helm/pkg/proto/hapi/chart"
)
func
TestCreateCmd
(
t
*
testing
.
T
)
{
...
...
cmd/helm/delete.go
View file @
5b42cd73
...
...
@@ -23,7 +23,7 @@ import (
"github.com/spf13/cobra"
"
k8s.io
/helm/pkg/helm"
"
github.com/paalka
/helm/pkg/helm"
)
const
deleteDesc
=
`
...
...
cmd/helm/delete_test.go
View file @
5b42cd73
...
...
@@ -22,7 +22,7 @@ import (
"github.com/spf13/cobra"
"
k8s.io
/helm/pkg/helm"
"
github.com/paalka
/helm/pkg/helm"
)
func
TestDelete
(
t
*
testing
.
T
)
{
...
...
cmd/helm/dependency.go
View file @
5b42cd73
...
...
@@ -25,7 +25,7 @@ import (
"github.com/gosuri/uitable"
"github.com/spf13/cobra"
"
k8s.io
/helm/pkg/chartutil"
"
github.com/paalka
/helm/pkg/chartutil"
)
const
dependencyDesc
=
`
...
...
cmd/helm/dependency_build.go
View file @
5b42cd73
...
...
@@ -20,9 +20,9 @@ import (
"github.com/spf13/cobra"
"
k8s.io
/helm/pkg/downloader"
"
k8s.io
/helm/pkg/getter"
"
k8s.io
/helm/pkg/helm/helmpath"
"
github.com/paalka
/helm/pkg/downloader"
"
github.com/paalka
/helm/pkg/getter"
"
github.com/paalka
/helm/pkg/helm/helmpath"
)
const
dependencyBuildDesc
=
`
...
...
cmd/helm/dependency_build_test.go
View file @
5b42cd73
...
...
@@ -22,10 +22,10 @@ import (
"strings"
"testing"
"
k8s.io
/helm/pkg/helm/helmpath"
"
k8s.io
/helm/pkg/provenance"
"
k8s.io
/helm/pkg/repo"
"
k8s.io
/helm/pkg/repo/repotest"
"
github.com/paalka
/helm/pkg/helm/helmpath"
"
github.com/paalka
/helm/pkg/provenance"
"
github.com/paalka
/helm/pkg/repo"
"
github.com/paalka
/helm/pkg/repo/repotest"
)
func
TestDependencyBuildCmd
(
t
*
testing
.
T
)
{
...
...
cmd/helm/dependency_update.go
View file @
5b42cd73
...
...
@@ -20,9 +20,9 @@ import (
"path/filepath"
"github.com/spf13/cobra"
"
k8s.io
/helm/pkg/downloader"
"
k8s.io
/helm/pkg/getter"
"
k8s.io
/helm/pkg/helm/helmpath"
"
github.com/paalka
/helm/pkg/downloader"
"
github.com/paalka
/helm/pkg/getter"
"
github.com/paalka
/helm/pkg/helm/helmpath"
)
const
dependencyUpDesc
=
`
...
...
cmd/helm/dependency_update_test.go
View file @
5b42cd73
...
...
@@ -25,12 +25,12 @@ import (
"github.com/ghodss/yaml"
"
k8s.io
/helm/pkg/chartutil"
"
k8s.io
/helm/pkg/helm/helmpath"
"
k8s.io
/helm/pkg/proto/hapi/chart"
"
k8s.io
/helm/pkg/provenance"
"
k8s.io
/helm/pkg/repo"
"
k8s.io
/helm/pkg/repo/repotest"
"
github.com/paalka
/helm/pkg/chartutil"
"
github.com/paalka
/helm/pkg/helm/helmpath"
"
github.com/paalka
/helm/pkg/proto/hapi/chart"
"
github.com/paalka
/helm/pkg/provenance"
"
github.com/paalka
/helm/pkg/repo"
"
github.com/paalka
/helm/pkg/repo/repotest"
)
func
TestDependencyUpdateCmd
(
t
*
testing
.
T
)
{
...
...
cmd/helm/fetch.go
View file @
5b42cd73
...
...
@@ -24,10 +24,10 @@ import (
"path/filepath"
"github.com/spf13/cobra"
"
k8s.io
/helm/pkg/chartutil"
"
k8s.io
/helm/pkg/downloader"
"
k8s.io
/helm/pkg/getter"
"
k8s.io
/helm/pkg/repo"
"
github.com/paalka
/helm/pkg/chartutil"
"
github.com/paalka
/helm/pkg/downloader"
"
github.com/paalka
/helm/pkg/getter"
"
github.com/paalka
/helm/pkg/repo"
)
const
fetchDesc
=
`
...
...
cmd/helm/fetch_test.go
View file @
5b42cd73
...
...
@@ -24,7 +24,7 @@ import (
"regexp"
"testing"
"
k8s.io
/helm/pkg/repo/repotest"
"
github.com/paalka
/helm/pkg/repo/repotest"
)
func
TestFetchCmd
(
t
*
testing
.
T
)
{
...
...
cmd/helm/get.go
View file @
5b42cd73
...
...
@@ -22,7 +22,7 @@ import (
"github.com/spf13/cobra"
"
k8s.io
/helm/pkg/helm"
"
github.com/paalka
/helm/pkg/helm"
)
var
getHelp
=
`
...
...
cmd/helm/get_hooks.go
View file @
5b42cd73
...
...
@@ -22,7 +22,7 @@ import (
"github.com/spf13/cobra"
"
k8s.io
/helm/pkg/helm"
"
github.com/paalka
/helm/pkg/helm"
)
const
getHooksHelp
=
`
...
...
cmd/helm/get_hooks_test.go
View file @
5b42cd73
...
...
@@ -22,7 +22,7 @@ import (
"github.com/spf13/cobra"
"
k8s.io
/helm/pkg/helm"
"
github.com/paalka
/helm/pkg/helm"
)
func
TestGetHooks
(
t
*
testing
.
T
)
{
...
...
cmd/helm/get_manifest.go
View file @
5b42cd73
...
...
@@ -22,7 +22,7 @@ import (
"github.com/spf13/cobra"
"
k8s.io
/helm/pkg/helm"
"
github.com/paalka
/helm/pkg/helm"
)
var
getManifestHelp
=
`
...
...
cmd/helm/get_manifest_test.go
View file @
5b42cd73
...
...
@@ -22,7 +22,7 @@ import (
"github.com/spf13/cobra"
"
k8s.io
/helm/pkg/helm"
"
github.com/paalka
/helm/pkg/helm"
)
func
TestGetManifest
(
t
*
testing
.
T
)
{
...
...
cmd/helm/get_test.go
View file @
5b42cd73
...
...
@@ -23,7 +23,7 @@ import (
"github.com/spf13/cobra"
"
k8s.io
/helm/pkg/helm"
"
github.com/paalka
/helm/pkg/helm"
)
func
TestGetCmd
(
t
*
testing
.
T
)
{
...
...
cmd/helm/get_values.go
View file @
5b42cd73
...
...
@@ -22,8 +22,8 @@ import (
"github.com/spf13/cobra"
"
k8s.io
/helm/pkg/chartutil"
"
k8s.io
/helm/pkg/helm"
"
github.com/paalka
/helm/pkg/chartutil"
"
github.com/paalka
/helm/pkg/helm"
)
var
getValuesHelp
=
`
...
...
Prev
1
2
3
4
5
…
11
Next
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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