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

happy path e2e test #10519

Merged
merged 26 commits into from
Feb 18, 2025
Merged
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
11987ca
add back workflow
jenshu Jan 27, 2025
4ef7e0f
Merge branch 'main' of github.com:jenshu/kgateway into reenable-e2e-p…
jenshu Jan 30, 2025
c325afd
Merge branch 'main' of github.com:jenshu/kgateway into reenable-e2e-p…
jenshu Jan 30, 2025
caa9c0c
cleanup
jenshu Jan 30, 2025
4b9e0dc
Merge branch 'main' of github.com:jenshu/kgateway into reenable-e2e-p…
jenshu Jan 31, 2025
035cf2e
Merge branch 'main' of github.com:jenshu/kgateway into reenable-e2e-p…
jenshu Jan 31, 2025
e1fd2d8
Merge branch 'main' of github.com:jenshu/kgateway into reenable-e2e-p…
jenshu Jan 31, 2025
13c25c5
add back readme section
jenshu Jan 31, 2025
9183133
delete unused file
jenshu Jan 31, 2025
b545439
Merge branch 'main' of github.com:jenshu/kgateway into reenable-e2e-p…
jenshu Jan 31, 2025
9dd0db4
Merge branch 'main' of github.com:jenshu/kgateway into reenable-e2e-p…
jenshu Feb 4, 2025
540908b
Merge branch 'main' of github.com:jenshu/kgateway into reenable-e2e-p…
jenshu Feb 11, 2025
7cb2b10
Merge branch 'main' of github.com:jenshu/kgateway into reenable-e2e-p…
jenshu Feb 17, 2025
413023e
Merge branch 'main' of github.com:jenshu/kgateway into reenable-e2e-p…
jenshu Feb 17, 2025
0cc3db2
gha
jenshu Feb 18, 2025
b49010f
enable build test helpers
jenshu Feb 18, 2025
c6efeea
add basicrouting
jenshu Feb 18, 2025
b16024e
Merge branch 'main' of github.com:jenshu/kgateway into reenable-e2e-p…
jenshu Feb 18, 2025
3472e29
fix gatewayclassname
jenshu Feb 18, 2025
91167fd
remove gloo refs
jenshu Feb 18, 2025
da32183
fix helm ns
jenshu Feb 18, 2025
93988d1
fix refs
jenshu Feb 18, 2025
3655bc7
remove install-test-tools
jenshu Feb 18, 2025
6771cc5
install uninstall checks
jenshu Feb 18, 2025
de2d737
don't need ns
jenshu Feb 18, 2025
fb27f6b
Merge branch 'main' into reenable-e2e-part1
jenshu Feb 18, 2025
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
Prev Previous commit
Next Next commit
add back readme section
jenshu committed Jan 31, 2025
commit 13c25c5dc72290435e00abe33384059a0bd6dc6f
10 changes: 10 additions & 0 deletions test/kubernetes/e2e/README.md
Original file line number Diff line number Diff line change
@@ -53,6 +53,16 @@ Some tests may require environment variables to be set. Some required env vars a

- Istio features: Require `ISTIO_VERSION` to be set. The tests running in CI use `ISTIO_VERSION="${ISTIO_VERSION:-1.19.9}"` to default to a specific version of Istio.

## Resource example generation tool

This tool generates the input resources defined in code as an output yaml file. You can find an example under `test/kubernetes/e2e/features/headless_svc/generate/generate_examples.go`.

These examples are run as part of the codegen, but can also be manually run using the following command:

```bash
go generate <path to the generate.go file>
```

## Debugging

Refer to the [Debugging guide](./debugging.md) for more information on how to debug tests.