-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement ability to download operator install files + readme baseline (
#4) Signed-off-by: David Kornel <[email protected]>
- Loading branch information
Showing
4 changed files
with
100 additions
and
5 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
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 |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# STREAMS-E2E | ||
|
||
Test suite for verify interoperability of streams components like kafka, flink, etc... managed by operators on kubernetes. | ||
|
||
## Use latest released upstream operators install files | ||
Run maven with profile `get-operator-files` to download all operators install files which will be used in test suite. | ||
|
||
```bash | ||
$ ./mvnw install -P get-operator-files | ||
``` | ||
All operator install files are download into `operator-install-files` folder | ||
|
||
## Use operators from operator catalog | ||
TODO | ||
|
||
## Use own install files | ||
TDOD | ||
|
||
## Use own operator metadata bundle-container | ||
TODO | ||
|
||
## Run tests | ||
Run all tests. | ||
```bash | ||
$ ./mvnw verify | ||
``` | ||
|
||
Run specific tag. | ||
```bash | ||
$ ./mvnw verify -Dgroups=smoke | ||
``` | ||
|
||
Run specific test class or test | ||
```bash | ||
$ ./mvnw verify -Dit.tests=io.streams.e2e.dummy.DummyST | ||
$ ./mvnw verify -Dit.tests=io.streams.e2e.dummy.DummyST#dummyTest | ||
``` | ||
|
||
## Test configuration | ||
TODO |
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