-
Notifications
You must be signed in to change notification settings - Fork 344
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into priorityClass-esIndexCleaner
- Loading branch information
Showing
59 changed files
with
1,018 additions
and
1,196 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
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,26 @@ | ||
name: All in One E2E tests | ||
|
||
on: | ||
push: | ||
branches: [ master ] | ||
pull_request: | ||
branches: [ master ] | ||
|
||
jobs: | ||
run-e2e-allinone-test-suite: | ||
runs-on: ubuntu-20.04 | ||
strategy: | ||
matrix: | ||
kube-version: | ||
- "1.19" | ||
- "1.20" | ||
- "1.21" | ||
- "1.22" | ||
name: Run all in one E2E tests | ||
steps: | ||
- name: "Check out code into the Go module directory" | ||
uses: actions/checkout@v2 | ||
- uses: ./hack/actions/e2e | ||
with: | ||
testsuite_name: allinone | ||
kube_version: ${{ matrix.kube-version }} |
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,26 @@ | ||
name: Cassandra E2E tests | ||
|
||
on: | ||
push: | ||
branches: [ master ] | ||
pull_request: | ||
branches: [ master ] | ||
|
||
jobs: | ||
run-e2e-cassandra-test-suite: | ||
runs-on: ubuntu-20.04 | ||
strategy: | ||
matrix: | ||
kube-version: | ||
- "1.19" | ||
- "1.20" | ||
- "1.21" | ||
- "1.22" | ||
name: Run Cassandra E2E tests | ||
steps: | ||
- name: "Check out code into the Go module directory" | ||
uses: actions/checkout@v2 | ||
- uses: ./hack/actions/e2e | ||
with: | ||
testsuite_name: cassandra | ||
kube_version: ${{ matrix.kube-version }} |
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,26 @@ | ||
name: Elasticsearch E2E tests | ||
|
||
on: | ||
push: | ||
branches: [ master ] | ||
pull_request: | ||
branches: [ master ] | ||
|
||
jobs: | ||
run-e2e-elasticsearch-test-suite: | ||
runs-on: ubuntu-20.04 | ||
strategy: | ||
matrix: | ||
kube-version: | ||
- "1.19" | ||
- "1.20" | ||
- "1.21" | ||
- "1.22" | ||
name: Run Elasticsearch E2E tests | ||
steps: | ||
- name: "Check out code into the Go module directory" | ||
uses: actions/checkout@v2 | ||
- uses: ./hack/actions/e2e | ||
with: | ||
testsuite_name: elasticsearch | ||
kube_version: ${{ matrix.kube-version }} |
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,26 @@ | ||
name: Examples E2E tests | ||
|
||
on: | ||
push: | ||
branches: [ master ] | ||
pull_request: | ||
branches: [ master ] | ||
|
||
jobs: | ||
run-e2e-examples-test-suite: | ||
runs-on: ubuntu-20.04 | ||
strategy: | ||
matrix: | ||
kube-version: | ||
- "1.19" | ||
- "1.20" | ||
- "1.21" | ||
- "1.22" | ||
name: Run examples E2E tests | ||
steps: | ||
- name: "Check out code into the Go module directory" | ||
uses: actions/checkout@v2 | ||
- uses: ./hack/actions/e2e | ||
with: | ||
testsuite_name: examples | ||
kube_version: ${{ matrix.kube-version }} |
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,26 @@ | ||
name: Generate E2E tests | ||
|
||
on: | ||
push: | ||
branches: [ master ] | ||
pull_request: | ||
branches: [ master ] | ||
|
||
jobs: | ||
run-e2e-generate-test-suite: | ||
runs-on: ubuntu-20.04 | ||
strategy: | ||
matrix: | ||
kube-version: | ||
- "1.19" | ||
- "1.20" | ||
- "1.21" | ||
- "1.22" | ||
name: Run generate E2E tests | ||
steps: | ||
- name: "Check out code into the Go module directory" | ||
uses: actions/checkout@v2 | ||
- uses: ./hack/actions/e2e | ||
with: | ||
testsuite_name: generate | ||
kube_version: ${{ matrix.kube-version }} |
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,26 @@ | ||
name: Istio E2E tests | ||
|
||
on: | ||
push: | ||
branches: [ master ] | ||
pull_request: | ||
branches: [ master ] | ||
|
||
jobs: | ||
run-e2e-istio-test-suite: | ||
runs-on: ubuntu-20.04 | ||
strategy: | ||
matrix: | ||
kube-version: | ||
- "1.19" | ||
- "1.20" | ||
- "1.21" | ||
- "1.22" | ||
name: Run Istio E2E tests | ||
steps: | ||
- name: "Check out code into the Go module directory" | ||
uses: actions/checkout@v2 | ||
- uses: ./hack/actions/e2e | ||
with: | ||
testsuite_name: istio | ||
kube_version: ${{ matrix.kube-version }} |
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,26 @@ | ||
name: Outside cluster E2E tests | ||
|
||
on: | ||
push: | ||
branches: [ master ] | ||
pull_request: | ||
branches: [ master ] | ||
|
||
jobs: | ||
run-e2e-outside-cluster-test-suite: | ||
runs-on: ubuntu-20.04 | ||
strategy: | ||
matrix: | ||
kube-version: | ||
- "1.19" | ||
- "1.20" | ||
- "1.21" | ||
- "1.22" | ||
name: Run outside cluster E2E tests | ||
steps: | ||
- name: "Check out code into the Go module directory" | ||
uses: actions/checkout@v2 | ||
- uses: ./hack/actions/e2e | ||
with: | ||
testsuite_name: outside-cluster | ||
kube_version: ${{ matrix.kube-version }} |
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,26 @@ | ||
name: Sidecar E2E tests | ||
|
||
on: | ||
push: | ||
branches: [ master ] | ||
pull_request: | ||
branches: [ master ] | ||
|
||
jobs: | ||
run-e2e-sidecar-test-suite: | ||
runs-on: ubuntu-20.04 | ||
strategy: | ||
matrix: | ||
kube-version: | ||
- "1.19" | ||
- "1.20" | ||
- "1.21" | ||
- "1.22" | ||
name: Run sidecar E2E tests | ||
steps: | ||
- name: "Check out code into the Go module directory" | ||
uses: actions/checkout@v2 | ||
- uses: ./hack/actions/e2e | ||
with: | ||
testsuite_name: sidecard | ||
kube_version: ${{ matrix.kube-version }} |
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,26 @@ | ||
name: Smoke E2E tests | ||
|
||
on: | ||
push: | ||
branches: [ master ] | ||
pull_request: | ||
branches: [ master ] | ||
|
||
jobs: | ||
run-e2e-smoke-test-suite: | ||
runs-on: ubuntu-20.04 | ||
strategy: | ||
matrix: | ||
kube-version: | ||
- "1.19" | ||
- "1.20" | ||
- "1.21" | ||
- "1.22" | ||
name: Run smoke E2E tests | ||
steps: | ||
- name: "Check out code into the Go module directory" | ||
uses: actions/checkout@v2 | ||
- uses: ./hack/actions/e2e | ||
with: | ||
testsuite_name: smoke | ||
kube_version: ${{ matrix.kube-version }} |
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,26 @@ | ||
name: Streaming E2E tests | ||
|
||
on: | ||
push: | ||
branches: [ master ] | ||
pull_request: | ||
branches: [ master ] | ||
|
||
jobs: | ||
run-e2e-streaming-test-suite: | ||
runs-on: ubuntu-20.04 | ||
strategy: | ||
matrix: | ||
kube-version: | ||
- "1.19" | ||
- "1.20" | ||
- "1.21" | ||
- "1.22" | ||
name: Run streaming E2E tests | ||
steps: | ||
- name: "Check out code into the Go module directory" | ||
uses: actions/checkout@v2 | ||
- uses: ./hack/actions/e2e | ||
with: | ||
testsuite_name: streaming | ||
kube_version: ${{ matrix.kube-version }} |
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,26 @@ | ||
name: Upgrade E2E tests | ||
|
||
on: | ||
push: | ||
branches: [ master ] | ||
pull_request: | ||
branches: [ master ] | ||
|
||
jobs: | ||
run-e2e-upgrade-test-suite: | ||
runs-on: ubuntu-20.04 | ||
strategy: | ||
matrix: | ||
kube-version: | ||
- "1.19" | ||
- "1.20" | ||
- "1.21" | ||
- "1.22" | ||
name: Run upgrade E2E tests | ||
steps: | ||
- name: "Check out code into the Go module directory" | ||
uses: actions/checkout@v2 | ||
- uses: ./hack/actions/e2e | ||
with: | ||
testsuite_name: upgrade | ||
kube_version: ${{ matrix.kube-version }} |
Oops, something went wrong.