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
4bafef22
Unverified
Commit
4bafef22
authored
Mar 01, 2019
by
Kubernetes Prow Robot
Committed by
GitHub
Mar 01, 2019
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #74761 from dims/better-detection-of-binaries-for-conformance-image
Better detection of binaries for conformance image
parents
fc30b380
9d7d6827
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 @
4bafef22
...
...
@@ -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