Skip to content
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 kind e2e test job for alpha features #29599

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 48 additions & 0 deletions config/jobs/kubernetes/sig-testing/kubernetes-kind-presubmits.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -281,3 +281,51 @@ presubmits:
testgrid-alert-stale-results-hours: '24'
testgrid-create-test-group: 'true'
testgrid-dashboards: sig-testing-kind

- name: pull-kubernetes-e2e-kind-alpha-features
cluster: k8s-infra-prow-build
optional: true
always_run: false
decorate: true
skip_branches:
- release-\d+\.\d+ # per-release settings
labels:
preset-dind-enabled: "true"
preset-kind-volume-mounts: "true"
decoration_config:
timeout: 60m
grace_period: 15m
path_alias: k8s.io/kubernetes
spec:
containers:
- image: gcr.io/k8s-staging-test-infra/krte:v20230421-ec4335b54b-master
command:
- wrapper.sh
- bash
- -c
- curl -sSL https://kind.sigs.k8s.io/dl/latest/linux-amd64.tgz | tar xvfz - -C "${PATH%%:*}/" && e2e-k8s.sh
env:
- name: FEATURE_GATES
value: '{"AllAlpha":true}'
- name: RUNTIME_CONFIG
value: '{"api/alpha":"true"}'
- name: FOCUS
value: \[Alpha\]
- name: SKIP
value: \[Slow\]|\[Disruptive\]|\[Flaky\]|PodSecurityPolicy|LoadBalancer|load.balancer|Simple.pod.should.support.exec.through.an.HTTP.proxy|subPath.should.support.existing|NFS|nfs|inline.execution.and.attach|should.be.rejected.when.no.endpoints.exist
- name: PARALLEL
value: "true"
# we need privileged mode in order to do docker in docker
securityContext:
privileged: true
resources:
limits:
cpu: 7
memory: 9000Mi
requests:
cpu: 7
memory: 9000Mi
annotations:
testgrid-num-failures-to-alert: '10'
testgrid-alert-stale-results-hours: '24'
testgrid-create-test-group: 'true'
3 changes: 3 additions & 0 deletions config/testgrids/kubernetes/presubmits/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,9 @@ dashboards:
- name: pull-kubernetes-e2e-kind-ipvs-dual-canary
test_group_name: pull-kubernetes-e2e-kind-ipvs-dual-canary
base_options: width=10
- name: pull-kubernetes-e2e-kind-alpha-features
test_group_name: pull-kubernetes-e2e-kind-alpha-features
base_options: width=10
- name: pull-kubernetes-e2e-gce-cos-alpha-features
test_group_name: pull-kubernetes-e2e-gce-cos-alpha-features
base_options: width=10
Expand Down