-
Notifications
You must be signed in to change notification settings - Fork 186
Simplify prow configs by removing options with good defaults #982
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -33,73 +33,55 @@ presubmits: | |
| istio-releases/daily-release: | ||
|
|
||
| - name: daily-unit-tests | ||
| agent: kubernetes | ||
| context: prow/daily-unit-tests.sh | ||
| branches: *branch_spec | ||
| always_run: true | ||
| rerun_command: "/test daily-unit-tests" | ||
| trigger: "(?m)^/(retest|test (all|daily-unit-tests))?,?(\\s+|$)" | ||
| labels: | ||
| preset-service-account: "true" | ||
| preset-istio-kubeconfig: "true" | ||
| spec: | ||
| <<: *build_spec | ||
|
|
||
| - name: daily-e2e-pilot-no_auth | ||
| agent: kubernetes | ||
| context: prow/daily-e2e-pilot-no_auth.sh | ||
| branches: *branch_spec | ||
| always_run: true | ||
| rerun_command: "/test daily-e2e-pilot-no_auth" | ||
| trigger: "(?m)^/(retest|test (all|daily-e2e-pilot-no_auth))?,?(\\s+|$)" | ||
| labels: | ||
| preset-service-account: "true" | ||
| spec: | ||
| <<: *test_spec | ||
|
|
||
| - name: daily-e2e-bookinfoTests | ||
| agent: kubernetes | ||
| context: prow/daily-e2e-bookinfoTests.sh | ||
| branches: *branch_spec | ||
| always_run: true | ||
| rerun_command: "/test daily-e2e-bookinfo" | ||
| trigger: "(?m)^/(retest|test (all|daily-e2e-bookinfo))?,?(\\s+|$)" | ||
| labels: | ||
| preset-service-account: "true" | ||
| spec: | ||
| <<: *test_spec | ||
|
|
||
| - name: daily-e2e-simpleTests | ||
| agent: kubernetes | ||
| context: prow/daily-e2e-simpleTests.sh | ||
| branches: *branch_spec | ||
| always_run: true | ||
| rerun_command: "/test daily-e2e-simple" | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This will default to
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yeah that s fine. Prow will tell people what to do on the PR |
||
| trigger: "(?m)^/(retest|test (all|daily-e2e-simple))?,?(\\s+|$)" | ||
| labels: | ||
| preset-service-account: "true" | ||
| spec: | ||
| <<: *test_spec | ||
|
|
||
| - name: daily-e2e-mixer-no_auth | ||
| agent: kubernetes | ||
| context: prow/daily-e2e-mixer-no_auth.sh | ||
| branches: *branch_spec | ||
| always_run: true | ||
| rerun_command: "/test daily-e2e-mixer-no_auth" | ||
| trigger: "(?m)^/(retest|test (all|daily-e2e-mixer-no_auth))?,?(\\s+|$)" | ||
| labels: | ||
| preset-service-account: "true" | ||
| spec: | ||
| <<: *test_spec | ||
|
|
||
| - name: daily-e2e-dashboard | ||
| agent: kubernetes | ||
| context: prow/daily-e2e-dashboard.sh | ||
| branches: *branch_spec | ||
| always_run: true | ||
| rerun_command: "/test daily-e2e-dashboard" | ||
| trigger: "(?m)^/(retest|test (all|daily-e2e-dashboard))?,?(\\s+|$)" | ||
| labels: | ||
| preset-service-account: "true" | ||
| spec: | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This will now default to
/test daily-e2e-bookinfoTests.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
noted