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
9d7d6827
Unverified
Commit
9d7d6827
authored
Feb 28, 2019
by
Davanum Srinivas
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Better detection of binaries for conformance image
Change-Id: Id33a0827e8cb1e3369544eea3335c80c89780786
parent
91bc8095
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
5 deletions
+6
-5
Makefile
cluster/images/conformance/Makefile
+6
-5
No files found.
cluster/images/conformance/Makefile
View file @
9d7d6827
...
...
@@ -21,12 +21,13 @@ REGISTRY?=k8s.gcr.io
ARCH
?=
amd64
OUT_DIR
?=
_output
OUTPUT_PATH
=
$(
shell
pwd
)
/../../../
$(OUT_DIR)
BINARY_PATH
=
$(
shell
test
-d
$(OUTPUT_PATH)
/local
&&
echo
$(OUTPUT_PATH)
/local
||
echo
$(OUTPUT_PATH)
/dockerized
)
LOCAL_OUTPUT_PATH
=
$(
shell
pwd
)
/../../../
$(OUT_DIR)
/local/bin/linux/
$(ARCH)
DOCKERIZED_OUTPUT_PATH
=
$(
shell
pwd
)
/../../../
$(OUT_DIR)
/dockerized/bin/linux/
$(ARCH)
GINKGO_BIN
?=
$(
shell
test
-f
$(LOCAL_OUTPUT_PATH)
/ginkgo
&&
echo
$(LOCAL_OUTPUT_PATH)
/ginkgo
||
echo
$(DOCKERIZED_OUTPUT_PATH)
/ginkgo
)
KUBECTL_BIN
?=
$(
shell
test
-f
$(LOCAL_OUTPUT_PATH)
/kubectl
&&
echo
$(LOCAL_OUTPUT_PATH)
/kubectl
||
echo
$(DOCKERIZED_OUTPUT_PATH)
/kubectl
)
E2E_TEST_BIN
?=
$(
shell
test
-f
$(LOCAL_OUTPUT_PATH)
/e2e.test
&&
echo
$(LOCAL_OUTPUT_PATH)
/e2e.test
||
echo
$(DOCKERIZED_OUTPUT_PATH)
/e2e.test
)
GINKGO_BIN
?=
$(BINARY_PATH)
/bin/linux/
$(ARCH)
/ginkgo
KUBECTL_BIN
?=
$(BINARY_PATH)
/bin/linux/
$(ARCH)
/kubectl
E2E_TEST_BIN
?=
$(BINARY_PATH)
/bin/linux/
$(ARCH)
/e2e.test
CLUSTER_DIR
?=
$(
shell
pwd
)
/../../../cluster/
BASEIMAGE
=
k8s.gcr.io/debian-hyperkube-base-
$(ARCH)
:0.12.1
...
...
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