Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
K
k3s
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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
k3s
Commits
db9951b2
Commit
db9951b2
authored
Jan 18, 2017
by
Ryan Hallisey
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Change kubemark Makefile to be provider independent
The Kubemark Makefile is defaulted to gcr.io. Instead, make it provider independent.
parent
302d3ab1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
4 deletions
+14
-4
Makefile
cluster/images/kubemark/Makefile
+14
-4
No files found.
cluster/images/kubemark/Makefile
View file @
db9951b2
...
...
@@ -15,8 +15,18 @@
# build Kubemark image from currently built binaries containing both 'real' master and Hollow Node.
# This makefile assumes that the kubemark binary is present in this directory.
all
:
docker build
--pull
-t
gcr.io/
$(PROJECT)
/kubemark .
gcloud docker
--
push gcr.io/
$(PROJECT)
/kubemark
REGISTRY
?=
gcr.io
PROJECT
?=
google_containers
.PHONY
:
all
all
:
gcloudpush
build
:
docker build
--pull
-t
$(REGISTRY)
/
$(PROJECT)
/kubemark .
gcloudpush
:
build
gcloud docker
--
push
$(REGISTRY)
/
$(PROJECT)
/kubemark
push
:
build
docker
--
push
$(REGISTRY)
/
$(PROJECT)
/kubemark
.PHONY
:
all build gcloudpush push
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