-
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 #23622 from vincepri/capi-04-prep
Add presubmits and periodics for Cluster API release-0.4
- Loading branch information
Showing
4 changed files
with
410 additions
and
6 deletions.
There are no files selected for viewing
129 changes: 129 additions & 0 deletions
129
config/jobs/kubernetes-sigs/cluster-api/cluster-api-periodics-release-0-4.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,129 @@ | ||
periodics: | ||
- name: periodic-cluster-api-test-release-0-4 | ||
interval: 1h | ||
decorate: true | ||
labels: | ||
preset-service-account: "true" | ||
extra_refs: | ||
- org: kubernetes-sigs | ||
repo: cluster-api | ||
base_ref: release-0.4 | ||
path_alias: sigs.k8s.io/cluster-api | ||
spec: | ||
containers: | ||
- image: gcr.io/k8s-staging-test-infra/kubekins-e2e:v20210915-5dbaf53458-1.21 | ||
command: | ||
- "./scripts/ci-test.sh" | ||
resources: | ||
requests: | ||
cpu: 7300m | ||
annotations: | ||
testgrid-dashboards: sig-cluster-lifecycle-cluster-api | ||
testgrid-tab-name: capi-test-release-0-4 | ||
testgrid-alert-email: [email protected] | ||
testgrid-num-failures-to-alert: "2" | ||
- name: periodic-cluster-api-e2e-release-0-4 | ||
interval: 1h | ||
decorate: true | ||
labels: | ||
preset-dind-enabled: "true" | ||
preset-kind-volume-mounts: "true" | ||
extra_refs: | ||
- org: kubernetes-sigs | ||
repo: cluster-api | ||
base_ref: release-0.4 | ||
path_alias: sigs.k8s.io/cluster-api | ||
- org: kubernetes | ||
repo: kubernetes | ||
base_ref: master | ||
path_alias: k8s.io/kubernetes | ||
spec: | ||
containers: | ||
- image: gcr.io/k8s-staging-test-infra/kubekins-e2e:v20210915-5dbaf53458-1.21 | ||
args: | ||
- runner.sh | ||
- "./scripts/ci-e2e.sh" | ||
env: | ||
- name: GINKGO_SKIP | ||
value: "\\[Conformance\\] \\[K8s-Upgrade\\]" | ||
# we need privileged mode in order to do docker in docker | ||
securityContext: | ||
privileged: true | ||
resources: | ||
requests: | ||
cpu: 7300m | ||
annotations: | ||
testgrid-dashboards: sig-cluster-lifecycle-cluster-api | ||
testgrid-tab-name: capi-e2e-release-0-4 | ||
testgrid-alert-email: [email protected] | ||
testgrid-num-failures-to-alert: "2" | ||
- name: periodic-cluster-api-e2e-release-0-4-mink8s | ||
interval: 1h | ||
decorate: true | ||
labels: | ||
preset-dind-enabled: "true" | ||
preset-kind-volume-mounts: "true" | ||
extra_refs: | ||
- org: kubernetes-sigs | ||
repo: cluster-api | ||
base_ref: release-0.4 | ||
path_alias: sigs.k8s.io/cluster-api | ||
- org: kubernetes | ||
repo: kubernetes | ||
base_ref: master | ||
path_alias: k8s.io/kubernetes | ||
spec: | ||
containers: | ||
- image: gcr.io/k8s-staging-test-infra/kubekins-e2e:v20210915-5dbaf53458-1.21 | ||
args: | ||
- runner.sh | ||
- "./scripts/ci-e2e.sh" | ||
env: | ||
- name: GINKGO_SKIP | ||
value: "\\[Conformance\\] \\[K8s-Upgrade\\]" | ||
# This value determines the minimum Kubernetes | ||
# supported version for Cluster API management cluster. | ||
- name: KUBERNETES_VERSION_MANAGEMENT | ||
value: "stable-1.19" | ||
# we need privileged mode in order to do docker in docker | ||
securityContext: | ||
privileged: true | ||
resources: | ||
requests: | ||
cpu: 7300m | ||
annotations: | ||
testgrid-dashboards: sig-cluster-lifecycle-cluster-api | ||
testgrid-tab-name: capi-e2e-release-0-4-mink8s | ||
testgrid-alert-email: [email protected] | ||
testgrid-num-failures-to-alert: "2" | ||
- name: periodic-cluster-api-verify-book-links-release-0-4 | ||
interval: 6h | ||
decorate: true | ||
extra_refs: | ||
- org: kubernetes-sigs | ||
repo: cluster-api | ||
base_ref: release-0.4 | ||
path_alias: sigs.k8s.io/cluster-api | ||
spec: | ||
containers: | ||
- image: gcr.io/k8s-staging-test-infra/kubekins-e2e:v20210915-5dbaf53458-1.21 | ||
command: | ||
- "runner.sh" | ||
- "make" | ||
- "verify-book-links" | ||
env: | ||
- name: GITHUB_TOKEN | ||
valueFrom: | ||
secretKeyRef: | ||
name: cluster-lifecycle-github-token | ||
key: cluster-lifecycle-github-token | ||
volumes: | ||
- name: cluster-lifecycle-github-token | ||
secret: | ||
secretName: cluster-lifecycle-github-token | ||
items: | ||
- key: cluster-lifecycle-github-token | ||
path: cluster-lifecycle-github-token | ||
annotations: | ||
testgrid-dashboards: sig-cluster-lifecycle-cluster-api | ||
testgrid-tab-name: capi-verify-book-links-release-0-4 |
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
Oops, something went wrong.