Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update templated files to rev 713ee44 #303

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ allow = [
"MIT",
"MPL-2.0",
"Unicode-DFS-2016",
"Zlib"
"Zlib",
"Unlicense",
]
private = { ignore = true }

Expand Down
18 changes: 12 additions & 6 deletions tests/README-templating.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,13 @@ An example of the content for the test definition file is shown here:
dimensions:
- name: spark
values:
- 3.4.1
- 3.5.0
- 3.2.1
- 3.2.2
- 3.2.3
- name: hadoop
values:
- 3.3.4
- 3.1.0
- 3.2.0
- name: aws
- abc
- xyz
Expand All @@ -37,8 +39,12 @@ In this example the test case uses only two of the three dimensions defined, so

````text
└── spark-pi-public-s3
├── spark-3.4.1_hadoop-3.3.4
├── spark-3.5.0_hadoop-3.3.4
├── spark-3.2.1_hadoop-3.1.0
├── spark-3.2.1_hadoop-3.2.0
├── spark-3.2.2_hadoop-3.1.0
├── spark-3.2.2_hadoop-3.2.0
├── spark-3.2.3_hadoop-3.1.0
└── spark-3.2.3_hadoop-3.2.0
````

The name of a test case defined under `tests` in this file has to refer back to a directory in the `templates/kuttl` directory, which will be used to create the test scenarios.
Expand All @@ -55,7 +61,7 @@ tests
````

The `kuttl-test.yaml.jinja2` cannot currently be edited, as it comes from the operator templating and any changes would be overwritten again.
This should be fairly easy to solve, and we can look at this as soon as it becomes necessary.
This should be fairly easy to solve and we can look at this as soon as it becomes necessary.

## Using

Expand Down