-
Notifications
You must be signed in to change notification settings - Fork 131
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Workflows - suites and cron triggers for dev and sandbox (#5810)
* run script fixed - missing artillery workflow added * test workflow suites - parallelism options added * test workflow suites - full smoke and small smoke, cron triggers - dev full/small and sandbox small * run script fixed - missing artillery workflow added - all * artillery .yaml renamed * workflow suites - labels added * workflow suites - labels added
- Loading branch information
1 parent
915992b
commit 01fbdca
Showing
15 changed files
with
89 additions
and
0 deletions.
There are no files selected for viewing
File renamed without changes.
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,14 @@ | ||
kind: TestWorkflow | ||
apiVersion: testworkflows.testkube.io/v1 | ||
metadata: | ||
name: tw-suite-full-smoke-cron-trigger | ||
labels: | ||
core-tests: workflows | ||
spec: | ||
steps: | ||
- execute: | ||
workflows: | ||
- name: tw-suite-full-smoke | ||
events: | ||
- cronjob: | ||
cron: "30 */4 * * *" # every 4 hours |
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,14 @@ | ||
kind: TestWorkflow | ||
apiVersion: testworkflows.testkube.io/v1 | ||
metadata: | ||
name: tw-suite-small-smoke-cron-trigger | ||
labels: | ||
core-tests: workflows | ||
spec: | ||
steps: | ||
- execute: | ||
workflows: | ||
- name: tw-suite-small-smoke | ||
events: | ||
- cronjob: | ||
cron: "0,20,40 * * * *" # every 20 minutes |
14 changes: 14 additions & 0 deletions
14
test/suites/test-workflows/cron/sandbox/small-smoke-cron.yaml
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,14 @@ | ||
kind: TestWorkflow | ||
apiVersion: testworkflows.testkube.io/v1 | ||
metadata: | ||
name: tw-suite-small-sandbox-smoke-cron-trigger | ||
labels: | ||
core-tests: workflows | ||
spec: | ||
steps: | ||
- execute: | ||
workflows: | ||
- name: tw-suite-small-smoke | ||
events: | ||
- cronjob: | ||
cron: "15 */2 * * *" # every 2 hours |
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,20 @@ | ||
kind: TestWorkflow | ||
apiVersion: testworkflows.testkube.io/v1 | ||
metadata: | ||
name: tw-suite-full-smoke | ||
labels: | ||
core-tests: workflows-suite | ||
spec: | ||
steps: | ||
- execute: | ||
parallelism: 2 | ||
workflows: | ||
- name: artillery-workflow-suite | ||
- name: cypress-workflow-suite | ||
- name: gradle-workflow-suite | ||
- name: jmeter-workflow-suite | ||
- name: k6-workflow-suite | ||
- name: maven-workflow-suite | ||
- name: playwright-workflow-suite | ||
- name: postman-workflow-suite | ||
- name: soapui-workflow-suite |
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
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,17 @@ | ||
kind: TestWorkflow | ||
apiVersion: testworkflows.testkube.io/v1 | ||
metadata: | ||
name: tw-suite-small-smoke | ||
labels: | ||
core-tests: workflows-suite | ||
spec: | ||
steps: | ||
- execute: | ||
parallelism: 2 | ||
workflows: | ||
- name: artillery-workflow-smoke | ||
- name: gradle-workflow-smoke-jdk11-from-template | ||
- name: jmeter-workflow-smoke-shell-artifacts | ||
- name: k6-workflow-smoke-artifacts | ||
- name: postman-workflow-smoke-template | ||
- name: soapui-workflow-smoke |
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 |
---|---|---|
|
@@ -7,5 +7,6 @@ metadata: | |
spec: | ||
steps: | ||
- execute: | ||
parallelism: 2 | ||
workflows: | ||
- name: soapui-workflow-smoke |