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

Add E2E tests for read replica feature #2298

Merged
merged 22 commits into from
Jan 22, 2024
Merged
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
ee80948
Add mirror gateway definitions and Implementations (#2262)
hlts2 Jan 19, 2024
5a01c13
Update values-readreplica.yaml with new index path and in-memory mode
ykadowak Jan 19, 2024
a07f4ba
Update POD_NAME environment variable in e2e.yml
ykadowak Jan 19, 2024
81b8b48
Add readreplica e2e logic
ykadowak Jan 21, 2024
ca3f7d7
Merge branch 'main' into feature/readreplica/e2e
ykadowak Jan 21, 2024
82044c1
Refactor e2e test for read replica
ykadowak Jan 21, 2024
5203f96
Update E2E test name and add read replica rotation
ykadowak Jan 21, 2024
c33e7ba
Update E2E test parameters for improved performance
ykadowak Jan 21, 2024
55425a7
Refactor setup-e2e action.yaml
ykadowak Jan 21, 2024
a68a83d
Refactor
ykadowak Jan 22, 2024
0275f1f
style: format code with Gofumpt and Prettier
deepsource-autofix[bot] Jan 22, 2024
6b5109f
Add kubectl package for Kubernetes operations
ykadowak Jan 22, 2024
1ca18d4
Remove unused param
ykadowak Jan 22, 2024
6d38686
Fix function parameter order in kubectl package
ykadowak Jan 22, 2024
5a8e99f
Refactor kubectl.go: Add copyright notice and fix error handling
ykadowak Jan 22, 2024
eb2ea7c
Merge branch 'main' into feature/readreplica/e2e
ykadowak Jan 22, 2024
08e4d49
FIx error handling
ykadowak Jan 22, 2024
b5b4ea2
Prevent command injection
ykadowak Jan 22, 2024
67f6eed
Apply format
ykadowak Jan 22, 2024
ed4e8b3
Seperate k8s client initialization in TestE2EReadReplica
ykadowak Jan 22, 2024
d127dbc
Fix comment
ykadowak Jan 22, 2024
0df5a99
style: format code with Gofumpt and Prettier
deepsource-autofix[bot] Jan 22, 2024
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
style: format code with Gofumpt and Prettier
This commit fixes the style issues introduced in d127dbc according to the output
from Gofumpt and Prettier.

Details: #2298
deepsource-autofix[bot] authored Jan 22, 2024
commit 0df5a99ddf33f5c66eec443739562de13660ebf4
2 changes: 1 addition & 1 deletion tests/e2e/crud/crud_test.go
Original file line number Diff line number Diff line change
@@ -827,7 +827,7 @@ func TestE2EIndexJobCorrection(t *testing.T) {

func TestE2EReadReplica(t *testing.T) {
t.Cleanup(teardown)

if kubeClient == nil {
var err error
kubeClient, err = client.New(kubeConfig)
Loading