-
Notifications
You must be signed in to change notification settings - Fork 83
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #339 from jacobwolfaws/master
Remove ebs references from e2e testing
- Loading branch information
Showing
4 changed files
with
6 additions
and
144 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,44 +13,13 @@ For more details, see the script itself. | |
For more examples, see the top-level Makefile. | ||
|
||
``` | ||
TEST_PATH=./tests/e2e-migration/... \ | ||
EBS_CHECK_MIGRATION=true \ | ||
TEST_PATH=./tests/e2e/... \ | ||
TEST_ID=18512 \ | ||
CLEAN=false \ | ||
KOPS_STATE_FILE=s3://mattwon \ | ||
AWS_REGION=us-west-2 \ | ||
AWS_AVAILABILITY_ZONES=us-west-2a \ | ||
GINKGO_FOCUS=Dynamic.\*xfs.\*should.store.data \ | ||
GINKGO_FOCUS=".*" \ | ||
GINKGO_NODES=1 \ | ||
./hack/e2e/run.sh | ||
``` | ||
|
||
# git read-tree | ||
|
||
Reference: https://stackoverflow.com/questions/23937436/add-subdirectory-of-remote-repo-with-git-subtree | ||
|
||
How to consume this directory by read-treeing the ebs repo: | ||
|
||
``` | ||
git remote add ebs [email protected]:kubernetes-sigs/aws-ebs-csi-driver.git | ||
git fetch ebs | ||
git read-tree --prefix=hack/e2e/ -u ebs/master:hack/e2e | ||
``` | ||
|
||
To commit changes and submit them as a PR back to the ebs repo: | ||
|
||
``` | ||
git diff ebs/master:hack/e2e HEAD:hack/e2e > /tmp/hack_e2e.diff | ||
pushd $GOPATH/src/github.com/kubernetes-sigs/aws-ebs-csi-driver | ||
git apply --reject --directory hack/e2e /tmp/hack_e2e.diff | ||
git commit | ||
``` | ||
|
||
To consume newer changes from the ebs repo: | ||
|
||
``` | ||
git fetch ebs | ||
git diff HEAD:hack/e2e ebs/master:hack/e2e > /tmp/hack_e2e.diff | ||
git apply --reject --directory hack/e2e /tmp/hack_e2e.diff | ||
git commit | ||
``` |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters