-
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.
Add periodic-cluster-api-provider-aws-e2e-eks-canary job
Signed-off-by: Marko Mudrinić <[email protected]>
- Loading branch information
Showing
1 changed file
with
46 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 |
---|---|---|
|
@@ -40,6 +40,52 @@ periodics: | |
testgrid-tab-name: periodic-e2e-main | ||
testgrid-alert-email: [email protected] | ||
testgrid-num-failures-to-alert: "2" | ||
- name: periodic-cluster-api-provider-aws-e2e-eks-canary | ||
cluster: eks-prow-build-cluster | ||
decorate: true | ||
decoration_config: | ||
timeout: 5h | ||
# Changed from 12 hours to reduce time spent waiting for job to run | ||
# TODO(xmudrii): rollback to 12 hours | ||
interval: 1h | ||
labels: | ||
preset-dind-enabled: "true" | ||
preset-kind-volume-mounts: "true" | ||
preset-service-account: "true" | ||
preset-aws-ssh: "true" | ||
preset-aws-credential: "true" | ||
extra_refs: | ||
- org: kubernetes-sigs | ||
repo: cluster-api-provider-aws | ||
base_ref: main | ||
path_alias: "sigs.k8s.io/cluster-api-provider-aws" | ||
spec: | ||
containers: | ||
- image: gcr.io/k8s-staging-test-infra/kubekins-e2e:v20230406-23cb1879e3-1.25 | ||
command: | ||
- "runner.sh" | ||
- "./scripts/ci-e2e.sh" | ||
env: | ||
- name: BOSKOS_HOST | ||
value: "boskos.test-pods.svc.cluster.local" | ||
- name: AWS_REGION | ||
value: "us-west-2" | ||
# Parallelize tests | ||
- name: GINKGO_ARGS | ||
value: "-nodes 20 -skip='\\[ClusterClass\\]'" | ||
securityContext: | ||
privileged: true | ||
resources: | ||
limits: | ||
cpu: 2 | ||
memory: "9Gi" | ||
requests: | ||
cpu: 2 | ||
memory: "9Gi" | ||
annotations: | ||
testgrid-dashboards: sig-k8s-infra-canaries | ||
testgrid-tab-name: periodic-aws-e2e-main-canary | ||
testgrid-num-columns-recent: "6" | ||
- name: periodic-cluster-api-provider-aws-eks-e2e | ||
decorate: true | ||
decoration_config: | ||
|