-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #18634 from anthonyrtong/ci-test-infra-multiple-co…
…ntainer-test Job to test Multiple Containers
- Loading branch information
Showing
1 changed file
with
19 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,3 +34,22 @@ periodics: | |
testgrid-dashboards: sig-testing-canaries | ||
testgrid-tab-name: benchmark-demo | ||
description: Demoing JUnit golang benchmark results. | ||
- interval: 10m | ||
name: ci-test-infra-multiple-container-test | ||
decorate: true | ||
spec: | ||
containers: | ||
- name: test-1 | ||
image: alpine | ||
command: ["/bin/echo"] | ||
args: ["I am the first container"] | ||
- name: test-2 | ||
image: alpine | ||
command: ["/bin/echo"] | ||
args: ["I am the second container"] | ||
annotations: | ||
testgrid-alert-email: [email protected] | ||
ProwMultipleContainerSupport: Yes, I know what I'm doing. | ||
testgrid-dashboards: sig-testing-canaries | ||
testgrid-tab-name: multiple-container-test | ||
description: echo from two different containers |