Skip to content
This repository was archived by the owner on Sep 30, 2020. It is now read-only.

Commit e90609d

Browse files
committed
fix(test): friendlier usage description for make run-remotely
1 parent f305215 commit e90609d

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

e2e/kubernetes/Makefile

+6-2
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,12 @@ run-locally:
2424
ssh:
2525
ssh -i $(SSH_PRIVATE_KEY) core@$(MASTER_HOST)
2626

27-
# usage:
28-
# DOCKER_REPO=mumoshu/ MASTER_HOST=**.**.**.** SSH_PRIVATE_KEY=path/to/key KUBE_AWS_ASSETS=path/to/where/kube-aws/run sh -c 'make build && make publish && make run-remotely'
27+
# example usage:
28+
# FOCUS='\[HPA\].*\[Conformance\]' DOCKER_REPO=quay.io/mumoshu/ MASTER_HOST=**.**.**.** SSH_PRIVATE_KEY=path/to/key KUBE_AWS_ASSETS=path/to/where/kube-aws/run sh -c 'make build && make publish && make run-remotely'
29+
#
30+
# FOCUS:
31+
# a regexp to selectively run e2e tests. Default: \[Conformance\]
32+
# see https://github.com/kubernetes/kubernetes/blob/master/docs/devel/e2e-tests.md#conformance-tests for more examples and description
2933
.PHONY: run-remotely
3034
run-remotely:
3135
rsync -a -e 'ssh -i $(SSH_PRIVATE_KEY)' $(KUBE_AWS_ASSETS)/ core@$(MASTER_HOST):/home/core/kube

0 commit comments

Comments
 (0)