-
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 #30025 from borg-land/optimise-containerd-jobs
Migrate remaining containerd-build-* jobs to the community bucket and introduce postsubmit jobs
- Loading branch information
Showing
5 changed files
with
265 additions
and
112 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 |
---|---|---|
@@ -1,14 +1,25 @@ | ||
# See the OWNERS docs at https://go.k8s.io/owners | ||
|
||
reviewers: | ||
- yujuhong | ||
- Random-Liu | ||
- dchen1107 | ||
- dims | ||
- mikebrow | ||
- bart0sh | ||
- bobbypage | ||
- derekwaynecarr | ||
- endocrimes | ||
- pacoxu | ||
- sjenning | ||
- SergeyKanzhelev | ||
approvers: | ||
- yujuhong | ||
- Random-Liu | ||
- dchen1107 | ||
- dims | ||
- mikebrow | ||
- yujuhong | ||
- Random-Liu | ||
- dchen1107 | ||
- derekwaynecarr | ||
- sjenning | ||
- mrunalp | ||
- klueska | ||
- SergeyKanzhelev | ||
- endocrimes | ||
emeritus_approvers: | ||
- dashpole | ||
- ehashman | ||
labels: | ||
- sig/node |
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
130 changes: 130 additions & 0 deletions
130
config/jobs/containerd/containerd/containerd-postsubmit-jobs.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,130 @@ | ||
# These CI/post-submit jobs are used by Kubernetes tests to fetch a recent build of containerd instead of building containerd on every run. | ||
postsubmits: | ||
containerd/containerd: | ||
- name: post-containerd-build | ||
labels: | ||
preset-service-account: "true" | ||
cluster: k8s-infra-prow-build | ||
decorate: true | ||
branches: | ||
- main | ||
spec: | ||
containers: | ||
- image: gcr.io/k8s-staging-test-infra/kubekins-e2e:v20230616-e730b60769-master | ||
command: | ||
- runner.sh | ||
args: | ||
- test/build.sh | ||
env: | ||
- name: DEPLOY_DIR | ||
value: main | ||
- name: DEPLOY_BUCKET | ||
value: k8s-staging-cri-tools | ||
resources: | ||
limits: | ||
cpu: 4 | ||
memory: 6Gi | ||
requests: | ||
cpu: 4 | ||
memory: 6Gi | ||
annotations: | ||
testgrid-dashboards: sig-node-containerd,containerd-postsubmits | ||
testgrid-tab-name: post-containerd-build | ||
description: "builds development in progress branch of upstream containerd" | ||
|
||
- name: post-containerd-build-1-6 | ||
labels: | ||
preset-service-account: "true" | ||
cluster: k8s-infra-prow-build | ||
decorate: true | ||
branches: | ||
- release/1.6 | ||
spec: | ||
containers: | ||
- image: gcr.io/k8s-staging-test-infra/kubekins-e2e:v20230616-e730b60769-master | ||
command: | ||
- runner.sh | ||
args: | ||
- test/build.sh | ||
env: | ||
- name: DEPLOY_DIR | ||
value: release-1.6 | ||
- name: DEPLOY_BUCKET | ||
value: k8s-staging-cri-tools | ||
resources: | ||
limits: | ||
cpu: 4 | ||
memory: 6Gi | ||
requests: | ||
cpu: 4 | ||
memory: 6Gi | ||
annotations: | ||
testgrid-dashboards: sig-node-containerd,containerd-postsubmits | ||
testgrid-tab-name: post-containerd-build-1.6 | ||
description: "builds release/1.6 branch of upstream containerd" | ||
|
||
- name: post-containerd-build-1-7 | ||
labels: | ||
preset-service-account: "true" | ||
cluster: k8s-infra-prow-build | ||
decorate: true | ||
branches: | ||
- release/1.7 | ||
spec: | ||
containers: | ||
- image: gcr.io/k8s-staging-test-infra/kubekins-e2e:v20230616-e730b60769-master | ||
command: | ||
- runner.sh | ||
args: | ||
- test/build.sh | ||
env: | ||
- name: DEPLOY_DIR | ||
value: release-1.7 | ||
- name: DEPLOY_BUCKET | ||
value: k8s-staging-cri-tools | ||
resources: | ||
limits: | ||
cpu: 4 | ||
memory: 6Gi | ||
requests: | ||
cpu: 4 | ||
memory: 6Gi | ||
annotations: | ||
testgrid-dashboards: sig-node-containerd,containerd-postsubmits | ||
testgrid-tab-name: post-containerd-build-1.7 | ||
description: "builds release/1.7 branch of upstream containerd" | ||
|
||
- name: post-containerd-build-test-images | ||
labels: | ||
preset-service-account: "true" | ||
preset-dind-enabled: "true" | ||
cluster: k8s-infra-prow-build | ||
decorate: true | ||
branches: | ||
- main | ||
spec: | ||
containers: | ||
- image: gcr.io/k8s-staging-test-infra/kubekins-e2e:v20230616-e730b60769-master | ||
command: | ||
- runner.sh | ||
args: | ||
- test/build-test-images.sh | ||
env: | ||
- name: DEPLOY_DIR | ||
value: main | ||
- name: PROJECT | ||
value: k8s-staging-cri-tools | ||
resources: | ||
limits: | ||
cpu: 4 | ||
memory: 6Gi | ||
requests: | ||
cpu: 4 | ||
memory: 6Gi | ||
# docker-in-docker needs privileged mode | ||
securityContext: | ||
privileged: true | ||
annotations: | ||
testgrid-dashboards: sig-node-containerd,containerd-postsubmits | ||
testgrid-tab-name: post-containerd-build-test-images | ||
description: "builds test images for development in progress branch of upstream containerd" |
Oops, something went wrong.