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
1c259297
Unverified
Commit
1c259297
authored
May 29, 2018
by
Matthew Fisher
Committed by
GitHub
May 29, 2018
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1929 from bacongobbler/helm-image
build helm binary in tiller image
parents
3771ef86
0a3580e8
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
1 deletion
+4
-1
.gitignore
.gitignore
+1
-0
Makefile
Makefile
+1
-0
Dockerfile
rootfs/Dockerfile
+2
-1
No files found.
.gitignore
View file @
1c259297
...
...
@@ -5,6 +5,7 @@
_dist/
_proto/*.pb.go
bin/
rootfs/helm
rootfs/tiller
rootfs/rudder
vendor/
...
...
Makefile
View file @
1c259297
...
...
@@ -60,6 +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)
/helm
$(GOFLAGS)
-tags
'
$(TAGS)
'
-ldflags
'
$(LDFLAGS)
'
k8s.io/helm/cmd/helm
GOOS
=
linux
GOARCH
=
amd64
CGO_ENABLED
=
0
$(GO)
build
-o
$(BINDIR)
/tiller
$(GOFLAGS)
-tags
'
$(TAGS)
'
-ldflags
'
$(LDFLAGS)
'
k8s.io/helm/cmd/tiller
.PHONY
:
docker-build
...
...
rootfs/Dockerfile
View file @
1c259297
...
...
@@ -14,10 +14,11 @@
FROM
alpine:3.7
RUN
apk update
&&
apk add ca-certificates
&&
rm
-rf
/var/cache/apk/
*
RUN
apk update
&&
apk add ca-certificates
socat
&&
rm
-rf
/var/cache/apk/
*
ENV
HOME /tmp
COPY
helm /bin/helm
COPY
tiller /bin/tiller
EXPOSE
44134
...
...
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