-
Notifications
You must be signed in to change notification settings - Fork 2.7k
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 registry e2e tests #29249
Merged
Merged
add registry e2e tests #29249
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 |
---|---|---|
|
@@ -14,6 +14,38 @@ presets: | |
value: registry-sandbox.k8s.io/pause:3.8 | ||
|
||
periodics: | ||
# TODO: copy this job onto the EKS cluster and run from AWS once the job is working | ||
# and the EKS CI cluster is ready | ||
- name: registry-sandbox-e2e-gcp | ||
cluster: k8s-infra-prow-build | ||
interval: 10m | ||
decorate: true | ||
extra_refs: | ||
- org: kubernetes | ||
repo: registry.k8s.io | ||
base_ref: main | ||
# we don't need git history and we want this to run very quickly | ||
# TODO: https://github.com/kubernetes/test-infra/issues/26590 | ||
clone_depth: 1 | ||
annotations: | ||
testgrid-dashboards: sig-k8s-infra-canaries, sig-k8s-infra-registry | ||
testgrid-days-of-results: '7' | ||
testgrid-tab-name: registry-sandbox-e2e-gcp | ||
testgrid-num-failures-to-alert: '1' | ||
testgrid-alert-email: [email protected] | ||
spec: | ||
containers: | ||
- image: golang | ||
command: | ||
- make | ||
- e2e-test | ||
resources: | ||
limits: | ||
cpu: 4 | ||
memory: 8Gi | ||
requests: | ||
cpu: 4 | ||
memory: 8Gi | ||
- name: e2e-kops-grid-gcr-mirror-canary | ||
cluster: k8s-infra-prow-build | ||
cron: '11 0-23/1 * * *' | ||
|
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 |
---|---|---|
|
@@ -69,6 +69,28 @@ presubmits: | |
requests: | ||
cpu: 4 | ||
memory: 8Gi | ||
- name: pull-registry-e2e | ||
cluster: k8s-infra-prow-build | ||
decorate: true | ||
always_run: true | ||
annotations: | ||
testgrid-dashboards: sig-k8s-infra-registry | ||
testgrid-tab-name: pull-registry-e2e | ||
testgrid-num-failures-to-alert: '6' | ||
testgrid-alert-email: [email protected] | ||
spec: | ||
containers: | ||
- image: golang | ||
command: | ||
- make | ||
- e2e-test-local | ||
resources: | ||
limits: | ||
cpu: 4 | ||
memory: 8Gi | ||
requests: | ||
cpu: 4 | ||
memory: 8Gi | ||
- name: pull-registry-build | ||
cluster: k8s-infra-prow-build | ||
decorate: true | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
if not for the time to build the test binary, these run in a few seconds.
We can make the job shallow clone actually and really speed these up so the job is a very quick + cheap run, hence bias towards frequent coverage
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.
set clone depth to cut time even more